-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
970 lines (490 loc) · 29.8 KB
/
index.html
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
<!DOCTYPE html>
<html class="uk-notouch" lang="en-gb" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FireSinging - Open source game server for Age of Empires Online</title>
<link href="https://firesinging.github.io/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon">
<link href="https://firesinging.github.io/apple_touch_icon.png" rel="apple-touch-icon-precomposed">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/css/uikit.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/css/components/slideshow.min.css" />
<link rel="stylesheet" href="https://firesinging.github.io/css/theme.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/js/uikit.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/js/components/slideshow.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/js/components/slideshow-fx.min.js"></script>
<script src="https://firesinging.github.io/js/parallax.js"></script>
</head>
<body class="tm-isblog tm-section-divider tm-sidebar-width-40 tm-sidebar-parallax tm-sidebar-background-fixed">
<div class="uk-grid tm-wrapper" data-uk-grid-match>
<div class="uk-width-1-1 tm-sidebar-wrapper uk-hidden-medium uk-hidden-small" style="background-position: 0% 0px;">
<div class="uk-sticky-placeholder" style="margin: 0px;">
<div class="tm-sidebar-menu-container uk-sticky-init uk-active" style="top: 0px; width: 580px; position: fixed;" data-uk-sticky>
<nav class="tm-sidebar-nav" itemscope itemtype="http://schema.org/SiteNavigationElement">
<ul class="uk-navbar-nav uk-hidden-small">
<li class="uk-parent uk-active">
<a href="https://firesinging.github.io" itemprop="url">
<span itemprop="name">
Development blog
</span>
</a>
</li>
<li class="uk-parent">
<a href="https://github.com/firesinging" target="_blank" itemprop="url">
<span itemprop="name">
Development site
</span>
</a>
</li>
<li class="uk-parent">
<a href="https://github.com/firesinging/server" target="_blank" itemprop="url">
<span itemprop="name">
Server repository
</span>
</a>
</li>
<li class="uk-parent">
<a href="https://github.com/firesinging/xlive" target="_blank" itemprop="url">
<span itemprop="name">
XLive repository
</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="tm-sidebar-widget-container">
<div class="tm-sidebar-main">
<div class="uk-panel">
</div>
</div>
<div class="tm-sidebar-social uk-flex uk-flex-middle uk-flex-center">
<div>
<a title="Twitter" href=""><i class="uk-icon-twitter"></i></a>
<a title="Facebook" href=""><i class="uk-icon-facebook"></i></a>
<a title="Mail" href="mailto:[email protected]"><i class="uk-icon-envelope"></i></a>
</div>
</div>
</div>
</div>
<div class="uk-width-1-1 tm-content-wrapper tm-footer-true">
<nav class="tm-navbar uk-navbar uk-hidden-large">
<a class="uk-navbar-toggle" href="#offcanvas" data-uk-offcanvas></a>
</nav>
<section class="tm-top-a uk-grid" data-uk-grid-match="{target:'> div > .uk-panel'}">
<div class="uk-width-1-1 uk-row-first">
<div class="uk-panel uk-text-center">
<div data-uk-slideshow="{autoplay:true, animation: 'swipe'}">
<div class="uk-slidenav-position">
<ul class="uk-slideshow uk-overlay-active">
<li class="uk-active" data-slideshow-slide="img">
<div class="uk-cover-background uk-position-cover" style='background-image: url("https://firesinging.github.io/images/home_3.jpg");'>
</div>
<img style="width: 100%; height: auto; opacity: 0;" alt="We are working ..." src="https://firesinging.github.io/images/home_3.jpg.jpg">
<div class="uk-overlay-panel uk-flex uk-flex-center uk-flex-middle uk-text-center uk-overlay-background uk-overlay-fade">
<div>
<h3 class="uk-h1">
We are working ...
</h3>
</div>
</div>
</li>
<li data-slideshow-slide="img">
<div class="uk-cover-background uk-position-cover" style='background-image: url("https://firesinging.github.io/images/home_2.jpg");'>
</div>
<img style="width: 100%; height: auto; opacity: 0;" alt="so you can relax and ..." src="https://firesinging.github.io/images/home_2.jpg">
<div class="uk-overlay-panel uk-flex uk-flex-center uk-flex-middle uk-text-center uk-overlay-background uk-overlay-fade">
<div>
<h3 class="uk-h1">
on the return of ...
</h3>
</div>
</div>
</li>
<li data-slideshow-slide="img">
<div class="uk-cover-background uk-position-cover" style='background-image: url("https://firesinging.github.io/images/home_1.jpg");'>
</div>
<img style="width: 100%; height: auto; opacity: 0;" alt="watch a movie with your friends." src="https://firesinging.github.io/images/home_1.jpg">
<div class="uk-overlay-panel uk-flex uk-flex-center uk-flex-middle uk-text-center uk-overlay-background uk-overlay-fade">
<div>
<h3 class="uk-h1">
Age of Empires Online.
</h3>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<div class="tm-block-content-bottom">
<section class="tm-content-bottom uk-grid" data-uk-grid-match="{target:'> div > .uk-panel'}" data-uk-grid-margin>
<div class="uk-width-1-1 uk-row-first">
<div class="uk-panel">
<div class="tm-about">
<ul class="uk-slideshow uk-text-center uk-margin-bottom" data-uk-slideshow="{autoplay:true}">
<li class="uk-active">
<div class="uk-panel">
<div class="uk-margin">
<p>
Firesinging - Open source game server for Age of Empires Online
</p>
</div>
</div>
</li>
<li>
<div class="uk-panel">
<div class="uk-margin">
<p>
Our goal is to create a server emulation for local play of the game.
</p>
</div>
</div>
</li>
<li>
<div class="uk-panel">
<div class="uk-margin">
<p>
This means you have access to game settings and won't loose game progress again.
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
</div>
<div class="tm-content-container">
<article class="uk-article" itemscope itemtype=http://schema.org/BlogPosting data-permalink="https://firesinging.github.io#">
<h1 class="uk-article-title" itemprop="name">
<a title="Moving towards beta">Moving towards beta</a>
</h1>
<meta itemprop="description" content="Moving towards beta.">
<p class="uk-article-meta">
Written by <span itemprop="author">FireSinger2000</span> on
<time datetime="2018-07-08" itemprop="datePublished">08 July 2018</time>.
</p>
<div itemprop="articleBody">
<p>
Summer holiday is coming up for us and we are moving towards a beta release of 'FireSinging'. Currently we are testing functions like:
<ul>
<li>
Questing.
</li>
<li>
Techtree and traits.
</li>
<li>
Random rewards.
</li>
</ul>
</p>
<p>
Above features are added and give a good gameplay experience. As soon as we finish testing we can release a beta version. A beta because some functions are still missing, like:
<ul>
<li>
Milestones.
</li>
<li>
Skirmish and crete.
</li>
</ul>
After the beta release we will work on those features.
</p>
<p>
So far for the update!
</p>
</div>
</article>
<hr class="tm-grid-divider">
<article class="uk-article" itemscope itemtype=http://schema.org/BlogPosting data-permalink="https://firesinging.github.io#">
<h1 class="uk-article-title" itemprop="name">
<a title="Small update on things">Small update on things</a>
</h1>
<meta itemprop="description" content="Making progress.">
<p class="uk-article-meta">
Written by <span itemprop="author">FireSinger2000</span> on
<time datetime="2018-01-07" itemprop="datePublished">07 January 2018</time>.
</p>
<div itemprop="articleBody">
<p>
We wanted to give you a small update on things! From the list of our previous blog we have done most in our Christmas holiday. Adding remaining known packages still is a work in progress, but we have added most data extraction classes and done a few things in project management. We are now underway in adding player, empire and character classes which are required for true gameplay.
</p>
<p>
What's next:
<ul>
<li>
Adding player, empire and character classes.
</li>
<li>
Rewrite quest instances to required game format.
</li>
<li>
Redo some work on logging.
</li>
</ul>
The following ways you can contribute at this point:
<ul>
<li>
Code suggest on the current repository.
</li>
<li>
Rewrite quest instances to required game format.
</li>
</ul>
</p>
<p>
So far for the update!
</p>
</div>
</article>
<hr class="tm-grid-divider">
<article class="uk-article" itemscope itemtype=http://schema.org/BlogPosting data-permalink="https://firesinging.github.io#">
<h1 class="uk-article-title" itemprop="name">
<a title="Small update on things">Quest rewards</a>
</h1>
<meta itemprop="description" content="Making progress.">
<p class="uk-article-meta">
Written by <span itemprop="author">FireSinger2000</span> on
<time datetime="2018-04-02" itemprop="datePublished">02 April 2018</time>.
</p>
<div itemprop="articleBody">
<p>
During the past months we have kept working on 'FireSinging' and have updated our git frequently. The following has been added over the past months:
<ul>
<li>
Player, empire and character classes
</li>
<li>
Quest instances (thanks to Xen0byte) and quest data to allow questing ingame
</li>
<li>
Various game / server communication
</li>
</ul>
</p>
<p>
We are adding final items we need toward an actual, limited gameplay experience. Mainly quest rewards are being worked out at the moment and we hope to allow equiping gear onto units in the following update. Our short term roadmap:
<ul>
<li>
Add gear equipment communication.
</li>
<li>
Basic testing.
</li>
<li>
Update git.
</li>
</ul>
With basic quest rewards added one should be able to follow the game storyline for a while. Functions like optional quest rewards, lootboxes and such will still afterwards need to be added.
The following ways you can contribute at this point:
<ul>
<li>
Code suggest on the current repository.
</li>
<li>
Issue 32: Get right nugget data.
</li>
</ul>
</p>
<p>
So far for the update!
</p>
</div>
</article>
<hr class="tm-grid-divider">
<article class="uk-article" itemscope itemtype=http://schema.org/BlogPosting data-permalink="https://firesinging.github.io#">
<h1 class="uk-article-title" itemprop="name">
<a title="Small update on things">Small update on things</a>
</h1>
<meta itemprop="description" content="Making progress.">
<p class="uk-article-meta">
Written by <span itemprop="author">FireSinger2000</span> on
<time datetime="2018-01-07" itemprop="datePublished">07 January 2018</time>.
</p>
<div itemprop="articleBody">
<p>
We wanted to give you a small update on things! From the list of our previous blog we have done most in our Christmas holiday. Adding remaining known packages still is a work in progress, but we have added most data extraction classes and done a few things in project management. We are now underway in adding player, empire and character classes which are required for true gameplay.
</p>
<p>
What's next:
<ul>
<li>
Adding player, empire and character classes.
</li>
<li>
Rewrite quest instances to required game format.
</li>
<li>
Redo some work on logging.
</li>
</ul>
The following ways you can contribute at this point:
<ul>
<li>
Code suggest on the current repository.
</li>
<li>
Rewrite quest instances to required game format.
</li>
</ul>
</p>
<p>
So far for the update!
</p>
</div>
</article>
<hr class="tm-grid-divider">
<article class="uk-article" itemscope itemtype=http://schema.org/BlogPosting data-permalink="https://firesinging.github.io#">
<h1 class="uk-article-title" itemprop="name">
<a title="Development blog">Capital city</a>
</h1>
<meta itemprop="description" content="We have reached the capital city again.">
<p class="uk-article-meta">
Written by <span itemprop="author">FireSinger2000</span> on
<time datetime="2017-12-10" itemprop="datePublished">10 December 2017</time>.
</p>
<div itemprop="articleBody">
<p>
We have reached the capital city again! By loading fixed data (which later needs to be variable) we can now enter the Greek capital city again. Download the progress from our server github to see for yourself. You cannot actually play yet, but we move on. Creating the other characters also isn't implemented yet.
</p>
<p>
What's next:
<ul>
<li>
The game session gets disconnected due to chat. This will be the first to add.
</li>
<li>
Add remaining package definitions.
</li>
<li>
Administer some issues / tasks on Github.
</li>
<li>
Work on the data extraction layer for game data (certain game .xml files).
</li>
</ul>
The following ways you can contribute at this point:
<ul>
<li>
Code suggest on the current repository
</li>
<li>
Work out the player class based on XML
</li>
</ul>
</p>
<p>
So far for the update! If you have question, shoot them by e-mail. We have Christmas holiday coming so hope to give you more updates soon!
</p>
</div>
</article>
<hr class="tm-grid-divider">
<article class="uk-article" itemscope itemtype=http://schema.org/BlogPosting data-permalink="https://firesinging.github.io#">
<h1 class="uk-article-title" itemprop="name">
<a title="Development blog">Server repository</a>
</h1>
<meta itemprop="description" content="First commit to our server repository to start the recreation of a server for Age of Empires Online. This based on the SuperSocket protocol.">
<p class="uk-article-meta">
Written by <span itemprop="author">FireSinger2000</span> on
<time datetime="2017-11-18" itemprop="datePublished">18 November 2017</time>.
</p>
<div itemprop="articleBody">
<p>
Exciting news! We have commited a starting point to our server repository. This code is based on the release by Kisonik earlier to be found on Github. This code is converted to use the excellent SuperSocket protocol and we feel this to be a good start for 'FireSinging'. For people with knowlegde of C# and interested in helping us this might be a good moment to join in! Please note this isn't a fully working server yet (it far from is), so it isn't intended for gamers yet. The game just gets to the point where it needs a players empire.
</p>
<p>
Our further plan of attack:
<ul>
<li>
Create and add the default 'Command', 'Request' and 'Response' classes for the other package types (+/- 200 items)
</li>
<li>
Administer some issues / tasks on Github
</li>
<li>
Work on the data extraction layer for game data (certain game .xml files) in combination with an XML reader / writer class
</li>
</ul>
The following ways you can contribute at this point:
<ul>
<li>
Code suggest on the current repository
</li>
<li>
Work out the player class
</li>
</ul>
</p>
<p>
So far for the update! If you have question, shoot them by e-mail. We've been asked to share a bit more about ourselves (two IT students) and maybe we will do so in a next blog post.
</p>
</div>
</article>
<hr class="tm-grid-divider">
<article class="uk-article" itemscope itemtype=http://schema.org/BlogPosting data-permalink="https://firesinging.github.io#">
<h1 class="uk-article-title" itemprop="name">
<a title="Development blog">Development blog</a>
</h1>
<meta itemprop="description" content="Brand new development blog for FireSinging; The open source game server for Age of Empires Online">
<p class="uk-article-meta">
Written by <span itemprop="author">FireSinger2000</span> on
<time datetime="2017-11-10" itemprop="datePublished">10 November 2017</time>.
</p>
<div itemprop="articleBody">
<p>
Welcome to our brand new development blog! From here we want to frequently (bi-weekly) update you on the progress of our effort to build a local game server for Age of Empires Online. Ultimately it is our goal to build a local or small server emulation for home use where you can play (with friends and family). This way you control the game, on local play you can play whenever and wherever you want and don't need to worry about loosing game progress again.
</p>
<p>
As the road still is long, we just released a first build of the xlive installement we use for testing. This is based on a general script (Xliveless) and converted to Age of Empires Online studying different sources. We also hope to release next week a first effort of a solid project start we used (and are extending at this moment) of the server coding. This won't be an actual working game version, but gives insight in how code is structured. As game logic for most important single player content is known we are at the point of custom C# writing and those among you that know a bit of C# might be able to contribute from that point also to speed up progress. For example reading XML content from game files or doing default user actions like login and logoff.
</p>
<p>
So far for the update! If you have question, shoot them by e-mail.
</p>
</div>
</article>
<hr class="tm-grid-divider">
</div>
<footer class="tm-footer uk-flex uk-flex-middle uk-flex-center">
<p class="uk-text-small">
Age of Empires Online © Microsoft Corporation. <br />
Firesinging was created under Microsoft's "Game Content Usage Rules" using assets from Age of Empires Online, and it is not endorsed by or affiliated with Microsoft.
</p>
<a class="tm-totop-scroller" href="https://firesinging.github.io#" data-uk-smooth-scroll></a>
</footer>
</div>
</div>
<div class="uk-offcanvas" id="offcanvas">
<div class="uk-offcanvas-bar">
<ul class="uk-nav uk-nav-offcanvas">
<li class="uk-parent uk-active">
<a href="https://firesinging.github.io">
Development blog
</a>
</li>
<li class="uk-parent">
<a href="https://github.com/firesinging">
Development site
</a>
</li>
<li class="uk-parent">
<a href="https://github.com/firesinging/server" target="_blank">
Server repository
</a>
</li>
<li class="uk-parent">
<a href="https://github.com/firesinging/xlive" target="_blank">
XLive repository
</a>
</li>
</ul>
</div>
</div>
</body>
</html>