forked from opengaming/osgameclones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.yaml
7563 lines (7096 loc) · 278 KB
/
games.yaml
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
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: SCUMM
clones:
- name: ScummVM
url: http://scummvm.org/
repo: https://github.com/scummvm/scummvm
status: very active
lang: C++
info: List of supported games <a href="http://scummvm.org/compatibility/">is here</a>
- name: ["1945", Strikers 1945]
clones:
- name: Py1945
added: 2015-04-13
url: https://code.google.com/p/py1945game/
status: halted
lang: Python
license: GPL
repo: http://py1945game.googlecode.com/svn/trunk/
- name: 3D Deathchase
clones:
- name: Deathchase 3D
url: http://www.robsons.org.uk/archive/www.autismuk.freeserve.co.uk/index.htm
added: 2015-04-13
repo: http://www.robsons.org.uk/archive/www.autismuk.freeserve.co.uk/deathchase3d-0.9.tar.gz
lang: C
license: GPL2
- name: [Abuse, Abuse (video game)]
clones:
- name: Abuse
url: http://abuse.zoy.org/
repo: http://abuse.zoy.org/browser/abuse/trunk
added: 2013-05-27
status: halted
lang:
- C++
- Lisp
status: playable
media:
- image: http://abuse.zoy.org/raw-attachment/wiki/screenshots/abuse.png
- image: http://abuse.zoy.org/raw-attachment/wiki/screenshots/title.png
- name: [Ace of Spades, Ace of Spades (video game)]
clones:
- name: Iceball
added: 2015-07-22
url: http://iceball.build/
repo: https://github.com/iamgreaser/iceball
status: active
license: Multiple
lang:
- C
- Lua
- name: OpenSpades
added: 2015-04-10
url: https://sites.google.com/a/yvt.jp/openspades/
repo: https://github.com/yvt/openspades
status: active
lang: C++
license: GPL3
media:
- image: https://sites.google.com/a/yvt.jp/openspades/_/rsrc/1383240084030/media/shot0091.jpg
url: https://sites.google.com/a/yvt.jp/openspades/_/rsrc/1383240084030/media/shot0091.jpg?height=180&width=320
- image: https://sites.google.com/a/yvt.jp/openspades/_/rsrc/1383240107290/media/shot0097.jpg
url: https://sites.google.com/a/yvt.jp/openspades/_/rsrc/1383240107290/media/shot0097.jpg?height=180&width=320
- image: https://sites.google.com/a/yvt.jp/openspades/_/rsrc/1383240124607/media/shot0252.jpg
url: https://sites.google.com/a/yvt.jp/openspades/_/rsrc/1383240124607/media/shot0252.jpg?height=180&width=320
- name: "Ace Combat: Assault Horizon"
clones:
- name: open-horizon
added: 2016-02-09
url: http://zxstudio.org/blog/author/razgriz/
repo: https://github.com/undefined-darkness/open-horizon
status: active
lang: C++
framework: nya-engine
license: MIT
media:
- image: http://zxstudio.org/blog/wp-content/uploads/2015/04/open-horizon-progress-report-01.png
- image: http://zxstudio.org/blog/wp-content/uploads/2016/01/open-horizon-effects.png
- image: http://zxstudio.org/blog/wp-content/uploads/2015/05/cockpit2.png
- name: "Achtung, die Kurve!"
clones:
- name: Zatacka
added: 2015-04-16
url: http://zatacka.sourceforge.net/
repo: https://github.com/simenheg/zatackax/
status: halted
lang: C
framework: SDL
license: GPL
media:
- image: http://zatacka.sourceforge.net/img/sc1.jpg
- image: http://zatacka.sourceforge.net/img/sc2.jpg
- image: http://zatacka.sourceforge.net/img/sc3.jpg
- name: Netacka
added: 2016-03-06
url: https://pwmarcz.pl/netacka/
status: halted
lang: C
media:
- image: https://pwmarcz.pl/netacka/sshots.png
- name: Age of Empires II
clones:
- name: openage
url: http://openage.sft.mx/
repo: https://github.com/SFTtech/openage
added: 2014-10-26
status: active
info: runnable (not playable yet), requires original files
lang:
- C++
- Python
framework: SDL
license: GPL3
media:
- image: http://openage.sft.mx/pics/openage_0.png
- name: "Akalabeth: World of Doom"
clones:
- name: Aklabeth
url: http://www.robsons.org.uk/archive/www.autismuk.freeserve.co.uk/index.htm
repo: http://www.robsons.org.uk/archive/www.autismuk.freeserve.co.uk/aklabeth-1.0.tar.gz
added: 2015-04-13
lang: C
license: GPL2
- name: Alien 8
clones:
- name: Alien 8
url: http://retrospec.sgn.net/game/alien8
added: 2014-01-12
status: halted (playable)
lang: C
media:
- url: http://retrospec.sgn.net/config/screenshots/alien8.t.img0.jpg
image: http://retrospec.sgn.net/config/screenshots/alien8.f.img0.jpg
- url: http://retrospec.sgn.net/config/screenshots/alien8.t.img1.jpg
image: http://retrospec.sgn.net/config/screenshots/alien8.f.img1.jpg
- url: http://retrospec.sgn.net/config/screenshots/alien8.t.img2.jpg
image: http://retrospec.sgn.net/config/screenshots/alien8.f.img2.jpg
- url: http://retrospec.sgn.net/config/screenshots/alien8.t.menu.jpg
image: http://retrospec.sgn.net/config/screenshots/alien8.f.menu.jpg
- name: [Allegiance, "Allegiance (video game)"]
clones:
- name: Free Allegiance
repo: http://freeallegiance.cvs.sourceforge.net/viewvc/freeallegiance/
url: http://www.freeallegiance.org/
added: 2015-04-06
status: sporadic
lang: C
info: Shared source
media:
- image: http://www.freeallegiance.org/screenshots/CapitalShips/BelterCapsLaunchTogether.jpg
url: http://www.freeallegiance.org/screenshots/CapitalShips/BelterCapsLaunchTogether.thumb.jpg
- image: http://www.freeallegiance.org/screenshots/CapitalShips/ICBattlecruisersResonateAleph.jpg
url: http://www.freeallegiance.org/screenshots/CapitalShips/ICBattlecruisersResonateAleph.thumb.jpg
- image: http://www.freeallegiance.org/screenshots/Dogfights/BigGameVeryBusy.jpg
url: http://www.freeallegiance.org/screenshots/Dogfights/BigGameVeryBusy.thumb.jpg
- names:
- Alone in the Dark
- Alone in the Dark 2
- Jack in the Dark
- Alone in the Dark 3
clones:
- name: Free in the Dark
url: http://sourceforge.net/projects/fitd/
repo: http://fitd.svn.sf.net/viewvc/fitd/trunk/
added: 2014-09-05
status: halted
lang: C
license: GPL
- name: "Anacreon: Reconstruction 4021"
clones:
- name: "Ard-Reil: Anacreon Reconstruction Project"
url: http://ardreil.sourceforge.net/
repo: http://ardreil.cvs.sourceforge.net/viewvc/ardreil/
added: 2015-04-09
status: halted
lang:
- C
- C++
- Java
- Pascal
license: GPL2
- names:
- [Another World, "Another World (video game)"]
- [Out of This World, "Another World (video game)"]
- [Outer World (アウターワールド Autā Wārudo), "Another World (video game)"]
clones:
- name: New RAW
url: http://sourceforge.net/projects/newraw/
repo: svn://svn.code.sf.net/p/newraw/code/
added: 2014-09-05
status: halted
lang: C++
license: GPL
- name: rawgl
url: http://cyxdown.free.fr/rawgl/
repo: https://github.com/cyxx/rawgl
added: 2016-03-06
status: active
info: completable
lang: C++
license: GPL
media:
- image: http://cyxdown.free.fr/rawgl/raw-1.png
- image: http://cyxdown.free.fr/rawgl/raw-2.png
- image: http://cyxdown.free.fr/rawgl/rawgl-1.png
- image: http://cyxdown.free.fr/rawgl/rawgl-2.png
- name: ["Another World 2: Heart of the Alien", "Heart of the Alien"]
clones:
- name: Heart of the Alien
url: http://hota.sourceforge.net/
repo: http://hota.cvs.sourceforge.net/viewvc/hota/
added: 2015-04-02
status: halted
lang: C
- name: "Archon: The Light and the Dark"
clones:
- name: XArchon
added: 2015-05-03
url: http://xarchon.seul.org/
lang:
- C
- C++
status: halted
license: GPL3
repo: http://xarchon.seul.org/xarchon-0.50.tar.gz
media:
- image: http://xarchon.seul.org/img/snap-1.gif
- image: http://xarchon.seul.org/img/snap-2.gif
- name: [Ares, Ares (video game)]
clones:
- name: Antares
url: http://arescentral.org/antares/
repo: https://github.com/arescentral/antares
added: 2014-08-20
status: active
lang: C++
license: GPL3
status: playable
media:
- image: http://farm3.static.flickr.com/2606/4103057024_0b577de0a2_m.jpg
url: http://www.flickr.com/photos/sfiera/4103057024/in/pool-1519223@N24/
- image: http://farm3.static.flickr.com/2742/4102298687_8c2e12276b_m.jpg
url: http://www.flickr.com/photos/sfiera/4102298687/in/pool-1519223@N24/
- image: http://farm3.static.flickr.com/2597/4103065046_f52a39003f_m.jpg
url: http://www.flickr.com/photos/sfiera/4103065046/in/pool-1519223@N24/
- raw: <iframe width="560" height="315" src="//www.youtube.com/embed/4s44qu5zgXE?rel=0" frameborder="0" allowfullscreen></iframe>
- name: Armor Alley
clones:
- name: Armor Alley
added: 2015-05-05
url: http://www.schillmania.com/armor-alley/
repo: https://github.com/scottschiller/ArmorAlley
status: active
lang: JavaScript
license: CC3.0
- name: Artillery Duel
clones:
- name: Artillery Duel
added: 2015-04-11
url: https://code.google.com/p/artillery-duel-reloaded/
repo: http://artillery-duel-reloaded.googlecode.com/files/Artillery-0.61-src.zip
status: halted
lang: Python
license: GPL3
media:
- image: http://pygame.org/shots/1519.jpg
url: http://pygame.org/thumb/939c31cfc605bdf865ada0e7acbce5ee.png
- name: Arx Fatalis
clones:
- name: Arx Libertatis
url: http://arx-libertatis.org/
repo: https://github.com/arx/ArxLibertatis
added: 2013-05-27
info: needs original game files
status: active
lang: C++
media:
- raw: <iframe width="560" height="315" src="http://www.youtube.com/embed/mIribIqKee8?rel=0" frameborder="0" allowfullscreen></iframe>
- image: http://wiki.arx-libertatis.org/images/thumb/e/e1/Castle.jpg/120px-Castle.jpg
url: http://wiki.arx-libertatis.org/images/e/e1/Castle.jpg
- image: http://wiki.arx-libertatis.org/images/thumb/b/b9/Spell.jpg/120px-Spell.jpg
url: http://wiki.arx-libertatis.org/images/b/b9/Spell.jpg
- name: Ascendancy
clones:
- name: Starlane Empire
url: https://gna.org/projects/starlane/
repo: http://cvs.gna.org/cvsweb/starlane/?cvsroot=starlane
added: 2014-09-05
status: halted
lang: C++
license: GPL
- name: [Asteroids, Asteroids (video game)]
clones:
- name: Maelstrom
url: http://www.libsdl.org/projects/Maelstrom/
status: halted (playable)
lang: C
added: 2014-01-12
- name: Vectoroids
added: 2015-04-07
url: http://www.newbreedsoftware.com/vectoroids/
repo: ftp://ftp.tuxpaint.org/unix/x/vectoroids/src/vectoroids-1.1.0.tar.gz
status: halted
lang: C
license: GPL2
media:
- image: http://www.newbreedsoftware.com/vectoroids/screenshots/title.gif
- image: http://www.newbreedsoftware.com/vectoroids/screenshots/vectoroids.gif
- image: http://www.newbreedsoftware.com/vectoroids/screenshots/vectoroids-embedded.jpg
- name: Agendaroids
url: http://www.newbreedsoftware.com/agendaroids/
repo: ftp://ftp.tuxpaint.org/unix/agenda/agendaroids/src/agendaroids-2002.03.07.tar.gz
added: 2015-04-07
status: halted
lang: C
license: GPL2
media:
- image: http://www.newbreedsoftware.com/agendaroids/screenshots/agendaroids-title.gif
- image: http://www.newbreedsoftware.com/agendaroids/screenshots/agendaroids.gif
- image: http://www.newbreedsoftware.com/agendaroids/screenshots/agendaroids-zaurus.gif
- name: [Asylum, "https://www.mobygames.com/game/acorn-32-bit/asylum"]
clones:
- name: SDL Asylum
added: 2015-04-17
url: http://sdl-asylum.sourceforge.net/
status: halted
lang: C++
license: GPL3
repo: svn://svn.code.sf.net/p/sdl-asylum/code/trunk
media:
- url: https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/136705.jpg/182/137
image: https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/136705.jpg
- url: https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/134775.jpg/182/137
image: https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/134775.jpg
- url: https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/136451.jpg/182/137
image: https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/136451.jpg
- name: [Atomix, Atomix (video game)]
clones:
- name: Atomiks
url: http://www.viste-family.net/mateusz/software/atomiks/
status: playable
lang: C
media:
- raw: <iframe width="420" height="315" src="http://www.youtube.com/embed/t8FP44Gv8QY?rel=0" frameborder="0" allowfullscreen></iframe>
- name: KAtomic
url: https://www.kde.org/applications/games/katomic/
status: active
lang: C++
- name: GNOME Atomix
url: https://github.com/GNOME/atomix
status: halted
lang: C
- name: WAtomic
url: http://watomic.sourceforge.net/
added: 2015-04-10
repo: http://sourceforge.net/projects/watomic/files/watomic/1.2.3/WAtomic_src_1_2_3_257.zip/download
status: halted
lang: Delphi
framework: Kylix
license: GPL2
- name: AstroMenace
clones:
- name: AstroMenace
url: http://sourceforge.net/projects/openastromenace/
added: 2015-04-08
repo: svn://svn.code.sf.net/p/openastromenace/code/
status: active
lang: C++
license: GPL3
media:
- image: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am2.jpg
url: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am2.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am11.jpg
url: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am11.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am9.jpg
url: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am9.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am10.jpg
url: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am10.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am6.jpg
url: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am6.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am7.jpg
url: https://a.fsdn.com/con/app/proj/openastromenace/screenshots/am7.jpg/182/137
- name: Astrosmash
clones:
- name: Cosmosmash
url: http://perso.b2b2c.ca/sarrazip/dev/cosmosmash.html
added: 2015-04-16
status: sporadic
lang: C++
license: GPL2
repo: http://perso.b2b2c.ca/sarrazip/dev/cosmosmash-1.4.7.tar.gz
media:
- image: http://perso.b2b2c.ca/sarrazip/dev/images/cosmosmash-1.png
url: http://perso.b2b2c.ca/sarrazip/dev/images/cosmosmash-1.png
- name: Awesomenauts
clones:
- name: BlakedAwesomenaughts
added: 2015-05-28
repo: https://github.com/zombieman1041/BlakedAwesomenaughts
status: active
lang:
- JavaScript
- PHP
license: MIT
- name: [Babaliba, "Dinamic Software"]
clones:
- name: Babaliba
added: 2015-04-13
url: http://compiler.speccy.org/index.php?lang=eng&game=babaliba
repo: http://compiler.speccy.org/files/sources/Babaliba_Source.zip
lang: Visual FoxPro
media:
- image: http://compiler.speccy.org/images/screens/babaliba-scr1.png
- image: http://compiler.speccy.org/images/screens/babaliba-scr2.png
- image: http://compiler.speccy.org/images/screens/babaliba-scr3.png
- names:
- "Baldur's Gate series"
- Icewind Dale series
- "Planescape: Torment"
clones:
- name: GemRB
url: http://www.gemrb.org/
repo: https://github.com/gemrb/gemrb
status: active
lang: C++
media:
- image: http://sourceforge.net/dbimage.php?id=105342
- image: http://sourceforge.net/dbimage.php?id=105346
- image: http://sourceforge.net/dbimage.php?id=105344
- name: Ballerburg
clones:
- name: Ballerburg SDL
added: 2015-04-17
url: http://baller.tuxfamily.org/
repo: http://git.tuxfamily.org/baller/baller.git/
status: active
lang: C
license: GPL3
media:
- image: http://baller.tuxfamily.org/screenshot1.png
- image: http://baller.tuxfamily.org/screenshot2.png
- name: Balloon Fight
clones:
- name: Balloon Fight
added: 2016-04-30
url: http://js.mikedx.co.uk/balloonfight.html
repo: https://github.com/MikeDX/balloon-fight
status: active
framework: DIV Games Studio
license: MIT
- name: "Barbarian: The Ultimate Warrior"
clones:
- name: Barbarian
added: 2015-04-16
repo: https://www.dropbox.com/s/4n5kvajfmcu132o/barbarianAMIGAwin.zip
url: http://barbarian.1987.free.fr/indexEN.htm
status: active
lang: QuickBASIC
framework: QB64
media:
- image: http://barbarian.1987.free.fr/images/AMIGA01.jpg
- name: Battle Chess
clones:
- name: Open BattleChess
repo: http://openbattlechess.googlecode.com/svn/trunk/
url: https://code.google.com/p/openbattlechess/
added: 2015-04-08
status: halted
lang: C#
license: LGPL
reimplementations:
- name: Brutal Chess
added: 2015-04-08
url: http://sourceforge.net/projects/brutalchess/
repo: svn://svn.code.sf.net/p/brutalchess/code/trunk
status: halted
lang: C++
license: GPL2
media:
- url: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/69159.jpg/182/137
image: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/69159.jpg
- url: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/68227.jpg/182/137
image: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/68227.jpg
- url: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/59140.jpg/182/137
image: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/59140.jpg
- url: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/107538.jpg/182/137
image: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/107538.jpg
- url: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/89261.jpg/182/137
image: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/89261.jpg
- url: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/89261.jpg/182/137
image: https://a.fsdn.com/con/app/proj/brutalchess/screenshots/89261.jpg
- name: [Battle City, Battle City (video game)]
clones:
- name: Battle City
url: http://battlecity.org/
repo: https://github.com/Deceth/Battle-City
added: 2013-12-04
status: sporadic (playable)
lang: C++
media:
- image: http://battlecity.org/wp-content/uploads/your-city-has-been-destroyed-by-the-power-of-an-orb.png
- image: http://farm6.staticflickr.com/5246/5313969457_15de8df27f_z.jpg
- name: TZOD (Tank Zone Of Death)
url: https://code.google.com/p/tzod/
repo: https://code.google.com/p/tzod/
status: sporadic
lang:
- C++
- Lua
license: GPL3
added: 2015-04-06
reimplementations:
- name: BattleCity2014
added: 2015-05-19
repo: https://github.com/ggc87/BattleCity2014
status: sporadic
lang: C++
framework:
- Ogre3D
- EntityX
license: no specified licence
- name: "Bard's Tale Contruction Set"
clones:
- name: Bt Builder
url: http://identicalsoftware.com/btbuilder/
repo: https://github.com/dulsi/btbuilder
status: active
lang: C++
license: GPL3
added: 2016-02-23
- name: Bejeweled
clones:
- name: biju-game
added: 2015-05-28
repo: https://github.com/CrociDB/biju-game
status: halted (incomplete)
lang: JavaScript
framework: CraftyJS
license: no specified licence
- name: Bermuda Syndrome
clones:
- name: Bermuda Syndrome
url: http://cyxdown.free.fr/bs/
status: sporadic (or halted), playable
added: 2013-05-27
media:
- image: http://cyxdown.free.fr/bs/bs-1.png
- image: http://cyxdown.free.fr/bs/bs-2.png
- name: Betrayal at Krondor
clones:
- name: xBaK
url: http://xbak.sourceforge.net/
status: sporadic (or halted), playable
added: 2014-08-15
media:
- image: http://a.fsdn.com/con/app/proj/xbak/screenshots/126405.jpg
- image: http://a.fsdn.com/con/app/proj/xbak/screenshots/62665.jpg
- image: http://a.fsdn.com/con/app/proj/xbak/screenshots/71372.jpg
- name: [The Binding of Isaac, "The Binding of Isaac (video game)"]
clones:
- name: Witch Blast
repo: https://github.com/Cirrus-Minor/witchblast
status: active (playable)
lang: C++
framework: SFML
license:
- GPL3
- CC BY-NC-SA
added: 2015-09-11
media:
- image: http://dev.sfmlprojects.org/themes/responsiv-flat/assets/images/games/thumb/witch_blast.png
- raw: <iframe width="320" height="240" src="//www.youtube.com/embed/c1Ymyfm-P8s?rel=0" frameborder="0" allowfullscreen></iframe>
- name: [Blade Runner, "Blade Runner (1997 video game)"]
clones:
- name: replicant
repo: https://github.com/madmoose/replicant
added: 2015-04-04
status: stalled (incomplete)
lang: C++
- name: bladerunner (Engine within SCUMMVM)
added: 2015-04-17
repo: https://github.com/madmoose/scummvm/tree/bladerunner/engines/bladerunner
status: active
lang: C++
license: GPL2
- name: "Blake Stone: Planet Strike"
clones:
- name: bstone
url: https://github.com/bibendovsky/bstone
status: active (playable)
lang: C++
added: 2013-12-02
- name: [Blood, Blood (video game)]
clones:
- name: Blood Crossmatching (EDuke32 vanilla)
url: http://www.moddb.com/games/bloodcm
status: active
repo: http://m210.ucoz.ru/
added: 2013-05-29
- name: Transfusion
url: http://www.transfusion-game.com/
status: sporadic (playable)
repo: http://sourceforge.net/p/blood/code/ci/default/tree/
added: 2013-11-12
media:
- image: http://www.transfusion-game.com/images/thum_e1m2-00.jpg
url: http://www.transfusion-game.com/images/e1m2-00.jpg
- image: http://www.transfusion-game.com/images/thum_e3m7-02.jpg
url: http://www.transfusion-game.com/images/e3m7-02.jpg
- image: http://www.transfusion-game.com/images/thum_action08.jpg
url: http://www.transfusion-game.com/images/action08.jpg
- name: [Bolo, Bolo (1987 video game)]
clones:
- name: orona
url: http://stephank.github.io/orona/
repo: https://github.com/stephank/orona
status: halted (playable)
framework: HTML5
added: 2013-06-06
- names:
- Bomberman
- Dynablaster
clones:
- name: SDL Bomber
url: http://www.linuxmotors.com/SDL_bomber/
status: halted (playable)
lang: C
added: 2014-01-12
media:
- image: http://www.linuxmotors.com/SDL_bomber/bomber.gif
- name: Bombic
added: 2015-04-14
url: http://bombic.sourceforge.net/
repo: svn://svn.code.sf.net/p/bombic/code/
status: halted
lang: C++
license: GPL2
media:
- image: https://a.fsdn.com/con/app/proj/bombic/screenshots/22410.jpg
url: https://a.fsdn.com/con/app/proj/bombic/screenshots/22410.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/bombic/screenshots/22408.jpg
url: https://a.fsdn.com/con/app/proj/bombic/screenshots/22408.jpg/182/137
- name: Bombic2
added: 2015-04-14
url: http://bombic2.sourceforge.net/
repo: svn://svn.code.sf.net/p/bombic2/code/
status: halted
lang: C++
license: GPL2
media:
- url: http://bombic2.sourceforge.net/screenshots/small/cooperative_multiplayer.jpg
image: http://bombic2.sourceforge.net/screenshots/big/cooperative_multiplayer.png
- url: http://bombic2.sourceforge.net/screenshots/small/final.jpg
image: http://bombic2.sourceforge.net/screenshots/big/final.png
- url: http://bombic2.sourceforge.net/screenshots/small/fireman.jpg
image: http://bombic2.sourceforge.net/screenshots/big/fireman.png
- url: http://bombic2.sourceforge.net/screenshots/small/tvboss.jpg
image: http://bombic2.sourceforge.net/screenshots/big/tvboss.png
- name: Bomb Mania Reloaded
added: 2015-04-14
url: http://sourceforge.net/p/bomb-mania/wiki/Home/
repo: svn://svn.code.sf.net/p/bomb-mania/code-0/trunk
status: halted
lang: C++
license: GPL2
media:
- url: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/125901.jpg/182/137
image: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/125901.jpg
- url: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275181.jpg/182/137
image: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275181.jpg
- url: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275183.jpg/182/137
image: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275183.jpg
- url: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/125905.jpg/182/137
image: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/125905.jpg
- url: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275185.jpg/182/137
image: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275185.jpg
- url: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/logo.jpg/182/137
image: https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/logo.jpg
- name: I Have No Tomatoes
url: http://tomatoes.sourceforge.net/screenshots.html
repo: http://kent.dl.sourceforge.net/project/tomatoes/tomatoes/1.5/tomatoes-win32-src-1.5.zip
added: 2015-05-02
status: halted development
lang: C++
license: custom licence
media:
- url: http://tomatoes.sourceforge.net/ss1s.jpg
image: http://tomatoes.sourceforge.net/ss1.jpg
- url: http://tomatoes.sourceforge.net/ss2s.jpg
image: http://tomatoes.sourceforge.net/ss2.jpg
- url: http://tomatoes.sourceforge.net/ss3s.jpg
image: http://tomatoes.sourceforge.net/ss3.jpg
- url: http://tomatoes.sourceforge.net/ss4s.jpg
image: http://tomatoes.sourceforge.net/ss4.jpg
- name: Boulder Dash
clones:
- name: Rocks n diamonds
url: http://www.artsoft.org/rocksndiamonds/
status: sporadic (playable)
license: C
added: 2014-01-12
- name: GDash
url: https://bitbucket.org/czirkoszoltan/gdash
status: active
lang: C++
repo: https://bitbucket.org/czirkoszoltan/gdash.git
added: 2015-04-03
media:
- image: https://bitbucket-assetroot.s3.amazonaws.com/repository/ejzABR/4034423466-gdashgame.png?Signature=o2QfvjwJ88fFCWZTTaamGfiml70%3D&Expires=1428046717&AWSAccessKeyId=0EMWEFSGA12Z1HF1TZ82
- name: Mining Haze
url: http://sourceforge.net/projects/mininghaze/
added: 2015-04-15
status: halted
lang: C
license: GPL2
repo: http://iweb.dl.sourceforge.net/project/mininghaze/mininghaze/0.1/mining-haze-0.1.tar.gz
media:
- image: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177162.jpg
url: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177162.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177272.jpg
url: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177272.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177625.jpg
url: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177625.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177621.jpg
url: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177621.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177623.jpg
url: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177623.jpg/182/137
- image: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177270.jpg
url: https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177270.jpg/182/137
- name: Digger
added: 2015-05-02
repo: https://github.com/lutzroeder/digger
status: active
lang: TypeScript
license: no specified licence
- name: boulder-dash
added: 2015-05-29
repo: https://github.com/valeriansaliou/boulder-dash
status: active
lang: Java
license: no specified licence
- name: [Bratwurst, "http://www.mobygames.com/game/bratwurst"]
clones:
- name: bratwurst
added: 2015-05-15
repo: https://github.com/sabetts/bratwurst
status: halted
lang: Lisp
license: GPL2
- name: [Bruce Lee, "Bruce Lee (video game)"]
clones:
- name: Jet Lee
added: 2015-08-23
repo: https://github.com/Uvadzucumi/JetLee
status: active
lang: C++
license: no specified licence
media:
- image: https://camo.githubusercontent.com/1bb9d1b6520dbefb609254a3d19b8565ee79e36a/68747470733a2f2f7261772e6769746875622e636f6d2f557661647a7563756d692f6a65746c65652f6d61737465722f7372632f646174612f7363722f7363722d30312e706e67
- image: https://camo.githubusercontent.com/a6f4b342651016f20950e567b4e4a77eefa7e99c/68747470733a2f2f7261772e6769746875622e636f6d2f557661647a7563756d692f6a65746c65652f6d61737465722f7372632f646174612f7363722f7363722d30322e706e67
- image: https://camo.githubusercontent.com/5ec2f487d035932e0205b779551f7d44821b942e/68747470733a2f2f7261772e6769746875622e636f6d2f557661647a7563756d692f6a65746c65652f6d61737465722f7372632f646174612f7363722f7363722d30332e706e67
- name: Bubble Bobble
clones:
- name: The Bub's Brothers
url: http://bub-n-bros.sourceforge.net/
added: 2015-04-10
repo: http://bub-n-bros.cvs.sourceforge.net/viewvc/bub-n-bros/
status: halted
lang: Python
license: MIT
media:
- image: http://bub-n-bros.sourceforge.net/images/extend.png
- image: http://bub-n-bros.sourceforge.net/images/crashed-down.png
- image: http://bub-n-bros.sourceforge.net/images/alone-in-the-world.png
- image: http://bub-n-bros.sourceforge.net/images/pacman.png
- name: ["Bug Bomber", "http://www.mobygames.com/game/bug-bomber"]
clones:
- name: BitRiot
added: 2016-04-11
repo: https://github.com/VenKamikaze/BitRiot
status: active
lang: C++
framework: SDL
license: Apache License
- names:
- BurgerTime
- バーガータイム
- Hamburger
- ハンバーガー
clones:
- name: BurgerSpace
added: 2015-04-16
url: http://perso.b2b2c.ca/sarrazip/dev/burgerspace.html
repo: http://perso.b2b2c.ca/sarrazip/dev/burgerspace-1.9.2.tar.gz
status: halted
lang: C++
license: GPL2
media:
- image: http://perso.b2b2c.ca/sarrazip/dev/images/burgerspace-1.png
url: http://perso.b2b2c.ca/sarrazip/dev/images/burgerspace-1-tn.png
- names:
- Buster Bros
- Pang
- パン
- Pomping World
- ポンピング・ワールド
clones:
- name: Pang Zero
url: http://apocalypse.rulez.org/pangzero
repo: http://pangzero.cvs.sourceforge.net/pangzero/pangzero/
added: 2015-04-18
status: halted
lang: Perl
license: GPL2
media:
- image: http://apocalypse.rulez.org/kozosfiles/upipang11/version_1.0.jpg
url: http://apocalypse.rulez.org/kozosfiles/upipang11/tn_version_1.0.jpg
- name: "Buzz Aldrin's Race Into Space"
clones:
- name: Race Into Space
url: http://www.raceintospace.org/
added: 2015-04-05
repo: https://github.com/raceintospace/raceintospace
status: active
lang: C++
license: GPL2
media:
- image: http://www.raceintospace.org/images/screenshots/splash_screen.png
- name: [Cadaver, Cadaver (video game)]
clones:
- name: Cadaver
status: halted (incomplete)
info: PC game files required
lang: C++
added: 2015-04-06
repo: http://jotd.pagesperso-orange.fr/cadaver/bin/Cadaver-001.zip
media:
- image: http://jotd.pagesperso-orange.fr/cadaver/cadaver_remake_pic.png
- name: Caesar 3
clones:
- name: CaesarIA
url: https://bitbucket.org/dalerank/caesaria
repo: https://github.com/dalerank/caesaria-game
license: GPL3
status: active
lang:
- C++
- JavaScript
info: C++ (game engine), Javascript (game logic,gui), most of original game functionality playable, except war logic
added: 2013-05-27
- name: Call to Power II
clones:
- name: "Civilization: Call To Power 2 Source Project"
added: 2015-04-10
url: http://ctp2.darkdust.net/
repo: https://ctp2.darkdust.net/svn/
lang: C
license: custom licence
- name: Candy Crush Saga
reimplementations:
- name: CookieCrunch
repo: https://github.com/renatomcamilio/CookieCrunch
added: 2015-05-29
status: sporadic
lang: Swift
license: basic copyright licence
- name: [Cannon Fodder, Cannon Fodder (series)]
clones:
- name: Open Fodder
url: https://github.com/segrax/openfodder
status: active (playable)
lang: C++
repo: https://github.com/segrax/openfodder
added: 2013-11-20
- name: Cannon Fodder
repo: https://github.com/krazyjakee/CannonFodder
added: 2015-04-13
status: halted
framework: HTML5
license: no licence specified
- name: Carmageddon
clones:
- name: OpenC1
url: http://www.1amstudios.com/projects/openc1/
repo: http://code.google.com/p/openc1/
status: sporadic (playable)
info: needs game data
lang: C#
media:
- raw: <iframe width="420" height="315" src="http://www.youtube.com/embed/0afl6ruHZgI?rel=0" frameborder="0" allowfullscreen></iframe>
- name: Castle of the Winds
clones:
- name: Castle of the Winds (React/MeteorJS Remake)
added: 2015-08-31
repo: https://github.com/mordrax/cotwmtor
url: http://mordrax.github.io/cotwmtor/
status: active
lang: JavaScript
framework:
- React
- Redux
- Meteor
license: MIT
- name: Catacomb II
clones:
- name: CatacombSDL
url: https://github.com/Blzut3/CatacombSDL
repo: https://github.com/Blzut3/CatacombSDL
status: playable
info: needs game data
lang: C
added: 2014-07-23
- name: Cave Story
clones:
- name: NXEngine
url: http://nxengine.sourceforge.net/
status: sporadic (playable)
info: needs game data (but it's free!)
added: 2013-05-29
- name: "Chip's Challenge"
clones:
- name: Tile World
url: http://www.muppetlabs.com/~breadbox/software/tworld/
status: playable
lang: C
added: 2014-01-05
- name: Tile World 2
url: https://github.com/Qalthos/Tile-World
repo: https://github.com/Qalthos/Tile-World
status: playable
lang: C
added: 2014-01-05
- name: ChuChu Rocket!
clones:
- name: Duck Marines
url: http://tangramgames.dk/games/duckmarines/
repo: https://github.com/SimonLarsen/duckmarines
status: active (playable)
lang: Lua