-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathindex.html
More file actions
239 lines (200 loc) · 11.4 KB
/
index.html
File metadata and controls
239 lines (200 loc) · 11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
---
layout: default
title: KBEngine
tab: overview
---
<div class="masthead">
<div class="new-blog-post">
<a href="{{ site.baseurl}}{{ paginator.posts[0].url }}" onclick="_gaq.push(['_trackEvent', 'Masthead Actions', 'New Blog Post', '{{ paginator.posts[0].title }}']);">
New Blog Post: <strong>{{ paginator.posts[0].title }}</strong>
</a>
</div>
<!-- <p class="introducing">Introducing...</p> -->
<h1>KBEngine</h1>
<p class="byline">KBEngine is an open-source MMOG server engine.
Clients can communicate with the server through a simple protocol.
KBEngine plugins can be quickly combined with (Unity3D, OGRE, Cocos2d-x, HTML5,
etc.) technology to form a complete game client. The server-side low-level
framework is written in C++, and the game logic layer uses Python (supports hot-fixing).
Developers do not need to repeatedly implement the underlying
technologies common to some game servers, and instead can focus their efforts
on the game development level, to quickly build various multiplayer games.</p>
<div class="buttons">
<a id="download-button" href="https://github.com/kbengine/kbengine/releases/latest" class="btn btn-primary btn-large" onclick="_gaq.push(['_trackEvent', 'Masthead Actions', 'download']);">Download</a>
<a id="install-button" href="{{ site.baseurl }}/docs/" class="btn btn-large" onclick="_gaq.push(['_trackEvent', 'Masthead Actions', 'Install']);">Install Guide </a>
<a id="view-button" href="https://github.com/kbengine/kbengine" class="btn btn-large" onclick="_gaq.push(['_trackEvent', 'Masthead Actions', 'Github Project', 'View project on GitHub']);">Github</a>
<a id="demo-button" href="{{ site.baseurl }}/demos/" class="btn btn-large" onclick="_gaq.push(['_trackEvent', 'Masthead Actions', 'Demo']);">Demos </a>
</div>
<ul class="quick-links">
<li>
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=kbengine&repo=kbengine&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
</li>
<li>
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=kbengine&repo=kbengine&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
</li>
<li class="text ga-track"><a href="{{ site.baseurl }}/docs/">Read the docs</a></li>
<li class="text ga-track"><a href="https://github.com/kbengine/kbengine/issues">Submit an issue</a></li>
<li class="text ga-track"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=NSMU5PADHVMXC">Donate</a></li>
<li>
<div class="g-plusone" data-size="medium" data-href="https://kbengine.github.io//"></div>
</li>
</ul>
<div class="section players">
<div class="player player-craftysaurus" title="visit my website">
<iframe src="https://kbengine.github.io//assets/img/gravatar-user-min.jpg" allowtransparency="true" frameborder="0" scrolling="0" width="32" height="65"></iframe>
<div class="shadow"></div>
<a class="link" href="https://kbengine.github.io//" onclick="_gaq.push(['_trackEvent', 'Masthead Actions', 'Created by kbe']);"></a>
</div>
<p class="created-by">Created by kbe</p>
</div>
</div>
<div class="section features">
<h1>What are the features?</h1>
<p class="byline">You'll love it</p>
<div class="row">
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_043_group.png">
<h2>Many people online</h2>
<p>Supports large numbers of users interacting in real-time.</p>
</div>
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_342_hdd.png">
<h2>Server backups</h2>
<p>Supports regular automatic backups and manual backups.</p>
</div>
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_319_sort.png">
<h2>Supports Linux/Windows systems</h2>
<p>Linux support (x86/x64): Ubuntu, Debian, CentOS, Redhat. Others not tested.
Supports all versions of Windows, but Windows is only recommended for debugging.</p>
</div>
</div>
<div class="row">
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_208_cart_out.png">
<h2>Simple client SDK</h2>
<p>All clients have to do is receive event data and render it. Supports Ogre, Unity3d, Cocos2d, Html5, and more.</p>
</div>
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_119_adjust.png">
<h2>Easily configurable</h2>
<p>Configure how KBE operates in the <code>(assets)/res/server/kbengine.xml</code> and <code>kbe/res/server/kbengine_defaults.xml</code> files. Sensible defaults mean you won't need to alter much, but you are able to change anything you can think of. </p>
</div>
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_040_stats.png">
<h2>Load balancing</h2>
<p>In order to utilize limited hardware more effectively, dynamic load balancing technology keeps the engine running smoothly under high loads.</p>
</div>
</div>
<div class="row">
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_374_claw_hammer.png">
<h2>Powerful support tools</h2>
<p>Online debugging, status viewing, startup, and shutdown.</p>
</div>
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_044_keys.png">
<h2>Simple game design</h2>
<p>Just use Python to quickly design your game. The low-level framework is safe and reliable, ensuring efficiency.</p>
</div>
<div class="span4">
<img class="feature-icon" src="assets/img/glyphicons/glyphicons_118_embed_close.png">
<h2>Beautiful code</h2>
<p>Readable code means less bugs, easier fixes, simpler updates, and lowers the learning curve for new contributors to the project. Why not <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=kbengine&repo=kbengine&type=fork&count=false" allowtransparency="true" frameborder="0" scrolling="0" width="55px" height="20px"></iframe> the code and start today.</p>
</div>
</div>
<div class="row">
<div class="span3">
<h2>Cron support</h2>
<p>Out of the box cron script provided for backups, logrolls and more.</p>
</div>
<div class="span3">
<h2>Unit Test</h2>
<p>Each version has been unit tested.</p>
</div>
<div class="span3">
<h2>Open Source</h2>
<p>Built for and maintained by the community thanks to <a class="ga-track" href="https://github.com/">GitHub</a></p>
</div>
<div class="span3">
<h2>Screenshots</h2>
<p>You might like it. <a class="ga-track" href="{{ site.baseurl }}/screenshots/">Preview</a></p>
</div>
</div>
</div>
<div class="section">
<div id="donators" class="donators">
<h1>Donators</h1>
<p class="byline">These kind, kind people have <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=NSMU5PADHVMXC">donated</a> to kbengine:</p>
<div rel="tooltip" title="kbe" class="donator">
<a href="https://github.com/kbengine" target="_blank"><img src="http://www.gravatar.com/avatar/5af0807036d99993054c9332a21ff19b.png"></a>
</div>
<div rel="tooltip" title="coolengine" class="donator">
<a href="https://github.com/coolengine" target="_blank"><img src="https://avatars0.githubusercontent.com/u/16344619?v=3&s=400"></a>
</div>
<div rel="tooltip" title="seat" class="donator">
<a href="https://kbengine.github.io//" target="_blank"><img src="https://avatars0.githubusercontent.com/u/2800967?v=3&s=400"></a>
</div>
<div rel="tooltip" title="seat" class="donator">
<a href="https://kbengine.github.io//" target="_blank"><img src="https://avatars0.githubusercontent.com/u/2800867?v=3&s=400"></a>
</div>
<div rel="tooltip" title="seat" class="donator">
<a href="https://kbengine.github.io//" target="_blank"><img src="https://avatars0.githubusercontent.com/u/765756?v=3&s=400"></a>
</div>
<div rel="tooltip" title="seat" class="donator">
<a href="https://kbengine.github.io//" target="_blank"><img src="https://avatars0.githubusercontent.com/u/5656756?v=3&s=400"></a>
</div>
<div rel="tooltip" title="seat" class="donator">
<a href="https://kbengine.github.io//" target="_blank"><img src="https://avatars0.githubusercontent.com/u/565756?v=3&s=400"></a>
<div rel="tooltip" title="seat" class="donator">
<a href="https://github.com/macura0" target="_blank"><img src="https://avatars3.githubusercontent.com/u/5414852?v=3&s=400"></a>
<div rel="tooltip" title="seat" class="donator">
<a href="https://kbengine.github.io//" target="_blank"><img src="assets/img/gravatar-user-420.png"></a>
</div>
</div>
</div>
<div class="contributors">
<h1>Contributors</h1>
<p class="byline">
Want to be in this list? Just
<iframe class="github-btn fork-btn" src="http://ghbtns.com/github-btn.html?user=kbengine&repo=kbengine&type=fork&count=false&size=large" allowtransparency="true" frameborder="0" scrolling="0" width="80px" height="30px"></iframe>
and send a pull request.
</p>
<p>
<div class="container">
<div class="row">
<div class="col-xs-12">
<section id="repos1">
</div>
</div>
</div>
<script type="text/template" id="repo1">
<div class="forks"></div>
</script>
<script type="text/template" id="fork">
<a href="<%= html_url %>"><img width="100" src="<%= owner['avatar_url'] %>" /></a>
</script>
</p>
</div>
<div class="stargazers_section">
<h1>Stargazers</h1>
<p class="byline">All those who starred the project:</p>
<p>
<div class="container">
<div class="row">
<div class="col-xs-12">
<section id="repos">
</div>
</div>
</div>
<script type="text/template" id="repo">
<div class="stargazers"></div>
</script>
<script type="text/template" id="stargazer">
<a href="<%= html_url %>"><img width="100" src="<%= avatar_url %>" /></a>
</script>
</p>
</div>
<div class="section milestones">
<h1>Project Milestones</h1>
</div>