forked from opengaming/osgameclones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patho.yaml
2118 lines (1996 loc) · 45.7 KB
/
o.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: Octopus
images:
- https://cloud.githubusercontent.com/assets/16686245/12429085/98761c3c-bee8-11e5-9399-1f7cc162e9bd.png
info: Apple TV 4 required
lang:
- Swift
license:
- As-is
development: active
originals:
- Octopus
repo: https://github.com/roger-wetzel/Octopus
type: remake
updated: 2016-02-08
- name: Odamex
lang:
- C
license:
- GPL2
development: active
originals:
- Doom
- Heretic
- Hexen
repo: https://github.com/odamex/odamex
status: playable
type: remake
url: http://www.odamex.net/
updated: 2019-11-20
- name: Omega Race Remake
lang:
- C#
license:
- As-is
development: sporadic
originals:
- Omega Race
repo: https://github.com/UnforgivenRob/Omega-Race-Remake
type: clone
updated: 2015-05-29
- name: Omnispeak
images:
- http://davidgow.net/images/omnispeak-2.png
lang:
- C
license:
- GPL2
development: active
originals:
- Commander Keen Series
repo: https://github.com/sulix/omnispeak
type: remake
updated: 2015-04-04
url: http://davidgow.net/keen/omnispeak.html
- name: One Way To Go
images:
- https://a.fsdn.com/con/app/proj/onewaytogo/screenshots/screenshot_zps0048f6d4.PNG
- https://a.fsdn.com/con/app/proj/onewaytogo/screenshots/owtg_zpsc6792600.PNG
lang:
- Lua
license:
- GPL3
development: active
originals:
- Sensitive
type: remake
updated: 2019-11-20
url: https://gordebak.itch.io/onewaytogo
- name: Oolite
images:
- http://www.oolite.org/images/gallery/large/TradePost.jpg
- http://www.oolite.org/images/gallery/large/Kiota.png
- http://www.oolite.org/images/gallery/large/Contracts.png
license:
- GPL2
development: active
originals:
- Elite
repo: https://github.com/OoliteProject/oolite
type: clone
url: http://www.oolite.org/
updated: 2018-10-06
- name: Open BattleChess
lang:
- C#
license:
- As-is
development: halted
originals:
- Battle Chess
repo: https://github.com/blueveno/openbattlechess
type: remake
updated: 2019-03-29
- name: OpenBOR
type: clone
originals:
- Streets of Rage
- Double Dragon
- Final Fight
repo: https://github.com/DCurrent/openbor
url: http://www.chronocrash.com/forum/
development: sporadic
status: playable
lang:
- C
framework:
- SDL2
license:
- BSD
content: free
info: OpenBOR is the ultimate 2D side scrolling engine for beat em' ups, shooters, and more!
updated: 2019-09-23
video:
youtube: TbZD1pWsJeI
- name: openc2e
lang:
- C++
license:
- LGPL2
- GPL2
development: active
originals:
- Creatures
repo: https://github.com/openc2e/openc2e
type: remake
updated: 2020-05-05
url: http://creatures.wiki/Openc2e
- name: Open Fodder
lang:
- C++
license:
- GPL3
development: active
originals:
- Cannon Fodder
repo: https://github.com/OpenFodder/openfodder
status: playable
type: remake
updated: 2017-04-15
url: http://openfodder.com/
- name: Open Fortress
originals:
- Team Fortress 2
type: tool
repo: https://svn.openfortress.fun/svn/open_fortress/
url: 'http://openfortress.fun/'
development: active
status: playable
multiplayer:
- Competitive
- Online
- LAN
- Co-op
- Matchmaking
content: commercial
lang:
- C++
framework:
- Source SDK
license:
- Custom
- CC-BY-NC-SA
info: >-
A Sourcemod that aims to add Fun and interesting New modes in the Team
Fortress 2 Universe
updated: '2020-08-25'
video:
youtube: vnUIWB7Mixw
- name: Open Hexagon
images:
- http://vittorioromeo.info/Resources/img/openHexagon.png
lang:
- C++
license:
- AFL3
development: active
originals:
- Super Hexagon
repo: http://github.com/SuperV1234/SSVOpenHexagon
status: playable
type: clone
updated: 2013-09-11
url: http://vittorioromeo.info/projects.html
video:
youtube: Wth0Z2eMezE
- name: OpenHV
images:
- https://img.itch.zone/aW1nLzQxOTM0MTMucG5n/original/StOJCR.png
- https://img.itch.zone/aW1nLzQxOTAxMDMucG5n/original/gtYy3b.png
- https://img.itch.zone/aW1nLzQxOTM0MTAucG5n/original/Fhisck.png
lang:
- C#
- Lua
framework:
- OpenRA
license:
- GPL3
- CC-BY
- CC-BY-SA
content: open
multiplayer:
- Online
- LAN
development: active
status: playable
originals:
- Hard Vacuum
repo: https://github.com/OpenHV/OpenHV
type: similar
url: https://openhv.itch.io/openhv
updated: 2020-12-30
- name: Open Imperium Galactica
lang:
- Java
license:
- LGPL3
development: sporadic
originals:
- Imperium Galactica
repo: https://github.com/akarnokd/open-ig
status: playable
type: remake
updated: 2018-10-06
url: http://open-ig-dev.blogspot.com
video:
youtube: qHBUdUqqI-k
- name: Open Jumpgate
lang:
- C++
license:
- GPL2
development: active
originals:
- 'Jumpgate: The Reconstruction Initiative'
type: remake
updated: 2014-09-05
url: http://sourceforge.net/projects/opengate/
- name: Open Kick-Off
type: remake
originals:
- Kick Off
repo: https://github.com/ssenegas/kickoff
development: active
status: playable
lang:
- Java
framework:
- LibGDX
license:
- As-is
content: open
updated: 2019-03-29
images:
- https://user-images.githubusercontent.com/9662172/39470980-0051a248-4d41-11e8-9a60-182320e25b57.PNG
- name: Open Meridian
lang:
- C
license:
- GPL2
development: active
originals:
- Meridian 59
repo: https://github.com/OpenMeridian/Meridian59
type: remake
updated: 2015-06-02
url: http://openmeridian.org
- name: Open Panzer
images:
- http://i.imgur.com/NiJGQ.jpg
license:
- GPL2
development: active
originals:
- Panzer General
repo: https://github.com/nicupavel/openpanzer
type: remake
updated: 2012-06-29
url: http://www.linuxconsulting.ro/openpanzer/
- name: Open Portal Engine
type: clone
originals:
- Portal
repo: https://github.com/lpuglia/Open-Portal
development: sporadic
status: playable
lang:
- C++
framework:
- OpenGL
license:
- As-is
content: free
updated: 2019-05-24
video:
youtube: tqqeUCzWcdQ
- name: Open Rails
images:
- http://openrails.org/web1/images/HOMEPAGEmaingraphic6.jpg
lang:
- C#
license:
- GPL3
development: active
originals:
- Microsoft Train Simulator
repo: http://openrails.org/contribute/developing-code/
type: clone
updated: 2019-08-17
url: http://openrails.org/
- name: Open Rodent's Revenge
images:
- https://a.fsdn.com/con/app/proj/o2r/screenshots/254642.jpg
- https://a.fsdn.com/con/app/proj/o2r/screenshots/254636.jpg
- https://a.fsdn.com/con/app/proj/o2r/screenshots/254640.jpg
- https://a.fsdn.com/con/app/proj/o2r/screenshots/267538.jpg
- https://a.fsdn.com/con/app/proj/o2r/screenshots/255628.jpg
lang:
- C++
framework:
- Qt
- SFML
license:
- MIT
status: semi-playable
development: halted
originals:
- Rodent's Revenge
repo: https://github.com/pierreyoda/o2r
type: remake
updated: 2019-09-01
- name: Open RSC
type: remake
originals:
- Runescape Classic
repo: https://gitlab.openrsc.com/open-rsc
url: https://openrsc.com/
development: active
status: playable
multiplayer:
- Online
lang:
- Java
license:
- GPL3
info: Recreation of the discontinued classic variation of the game.
updated: 2019-04-29
images:
- https://i.imgur.com/TqshOR4.jpg
- https://i.imgur.com/yOdxioS.jpg
- https://i.redd.it/9l3b4v9cbnu21.gif
video:
youtube: idePY0rGvvE
- name: Open Sonic
type: clone
originals:
- Sonic the Hedgehog
repo: https://sourceforge.net/projects/opensnc/files/Open%20Sonic/0.1.4/opensnc-linux-0.1.4.tar.gz/download
url: http://opensnc.sourceforge.net/home/index.php
development: halted
status: playable
lang:
- C
framework:
- Allegro
license:
- GPL2
content: commercial
info: The game development stopped at 2010. Open Surge the official continuation with fully free assets.
updated: 2019-09-17
images:
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/0.png
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/1.png
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/2.png
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/4.png
video:
youtube: 2ke0ct4rVWY
- name: Open Surge
images:
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/4.png
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/0.png
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/3.png
- http://opensnc.sourceforge.net/home/screenshots/0_1_3/9.png
lang:
- C
license:
- GPL3
development: sporadic
originals:
- Sonic the Hedgehog
repo: https://github.com/alemart/opensurge
type: clone
updated: 2019-08-27
url: http://opensurge2d.org/
- name: Open Syobon Action
lang:
- C++
license:
- GPL2
development: halted
originals:
- Shobon Action
repo: http://sourceforge.net/projects/opensyobon/files/src/
type: remake
updated: 2015-04-13
url: http://sourceforge.net/projects/opensyobon/
- name: Open Zelda
lang:
- C++
license:
- CC-BY-NC-SA
- Zlib
development: halted
originals:
- Legend of Zelda
repo: https://github.com/openzelda/openzelda-source
status: playable
type: clone
updated: 2019-09-13
video:
youtube: secXtfqKo1c
- name: open-cube
info: A modification of tesseract so basically Cube 2 with better graphics and developed on github in a modern vcs.
lang:
- C++
license:
- Zlib
development: sporadic
originals:
- 'Cube 2: Sauerbraten'
repo: https://github.com/team-cube/open-cube
status: semi-playable
type: remake
updated: 2017-04-27
url: http://team-cube.github.io/
- name: open-heavy-smash
lang:
- C++
license:
- As-is
development: halted
originals:
- Heavy Smash
repo: https://github.com/namelivia/open-heavy-smash
type: remake
updated: 2015-05-28
- name: open-horizon
framework:
- nya-engine
images:
- http://zxstudio.org/blog/wp-content/uploads/2015/04/open-horizon-progress-report-01.png
- http://zxstudio.org/blog/wp-content/uploads/2016/01/open-horizon-effects.png
- http://zxstudio.org/blog/wp-content/uploads/2015/05/cockpit2.png
lang:
- C++
license:
- MIT
development: active
originals:
- 'Ace Combat: Assault Horizon'
repo: https://github.com/undefined-darkness/open-horizon
type: remake
updated: 2016-02-09
url: http://zxstudio.org/blog/author/razgriz/
- name: openage
development: active
framework:
- SDL
- OpenGL
images:
- https://openage.sft.mx/pics/openage_0.png
- https://openage.sft.mx/pics/openage_2.png
video:
youtube: 4GujF6YGSBY
lang:
- C++
- Python
license:
- GPL3
content: commercial
originals:
- Age of Empires
- Age of Empires II
- 'Star Wars: Galactic Battlegrounds'
repo: https://github.com/SFTtech/openage
status: semi-playable
type: remake
updated: 2019-05-28
info: We create a modern RTS engine for AoE-style gameplay. Including modding API, curve-based gamestate, a new renderer
and support for all operating systems.
url: http://openage.sft.mx/
- name: OpenApoc
lang:
- C++
license:
- MIT
development: active
status: semi-playable
originals:
- 'X-COM: UFO Defense'
- 'X-COM: Terror from the Deep'
- 'X-COM: Apocalypse'
- 'UFO: Enemy Unknown'
content: commercial
framework:
- SDL2
repo: https://github.com/OpenApoc/OpenApoc
type: remake
updated: 2019-07-24
url: http://openapoc.org/
video:
youtube: qMy4dYksZVg
- name: OpenArena
images:
- http://openarena.ws/e107_images/custom/085-8.jpg
- http://openarena.ws/e107_images/custom/085-13.jpg
- http://openarena.ws/e107_images/custom/085-14.jpg
- http://openarena.ws/e107_images/custom/085-16.jpg
lang:
- C
license:
- GPL2
development: sporadic
originals:
- Quake 3
repo: https://github.com/OpenArena/engine
type: remake
updated: 2019-08-27
url: http://openarena.ws/
- name: OpenBiohazard2
originals:
- Resident Evil 2
type: remake
repo: 'https://github.com/samuelyuan/OpenBiohazard2'
development: active
status: unplayable
content: commercial
lang:
- Go
framework:
- OpenGL
license:
- MIT
updated: '2021-01-12'
images:
- >-
https://raw.githubusercontent.com/samuelyuan/OpenBiohazard2/master/screenshots/beginning.png
- >-
https://raw.githubusercontent.com/samuelyuan/OpenBiohazard2/master/screenshots/inventory.png
- name: openblack
type: remake
originals:
- Black & White
repo: https://github.com/openblack/openblack
development: active
status: unplayable
lang:
- C++
framework:
- SDL2
- OpenGL
license:
- GPL3
content: commercial
updated: 2019-08-06
- name: OpenBlok
lang:
- C++
license:
- GPL3
development: halted
originals:
- Tetris
repo: https://github.com/mmatyas/openblok
type: clone
updated: 2018-12-05
url: https://github.com/mmatyas/openblok
- name: OpenBVE
type: clone
originals:
- BVE Trainsim
repo: https://github.com/leezer3/OpenBVE
url: https://openbve-project.net/
development: active
status: playable
lang:
- C#
license:
- PD
content: open
updated: 2019-09-17
- name: OpenC1
development: halted
lang:
- C#
license:
- Custom
content: commercial
originals:
- Carmageddon
repo: https://github.com/jeff-1amstudios/OpenC1
status: playable
type: remake
updated: 2017-02-08
url: http://www.1amstudios.com/projects/openc1/
video:
youtube: 0afl6ruHZgI
- name: OpenCity
images:
- http://www.opencity.info/screenshot/full/opencity-0.0.5-mainstatusbar.jpg
- http://www.opencity.info/screenshot/full/opencity-0.0.5-island.jpg
lang:
- C++
license:
- GPL2
development: halted
originals:
- Simcity
repo: svn://svn.code.sf.net/p/opencity/code/trunk
type: clone
updated: 2015-04-03
url: http://www.opencity.info/
- name: OpenClaw
framework:
- SDL
images:
- https://camo.githubusercontent.com/59ebfcbac962696347f795ba2de4273d8e95cd20/68747470733a2f2f696d672e796f75747562652e636f6d2f76692f696b58514e565f617736382f302e6a7067
lang:
- C++
license:
- GPL3
originals:
- Claw
repo: https://github.com/pjasicek/OpenClaw
type: remake
updated: 2020-08-25
- name: OpenClonk
lang:
- C++
license:
- ISC
development: active
status: playable
multiplayer:
- Online
- LAN
originals:
- Clonk
repo: https://github.com/openclonk/openclonk
type: remake
updated: 2019-12-28
url: https://www.openclonk.org/
video:
youtube: zydiZSXpn0w
- name: OpenCrystalCaves
images:
- https://github.com/gurka/OpenCrystalCaves/raw/master/screenshots/screenshot1.png?raw=true
- https://github.com/gurka/OpenCrystalCaves/raw/master/screenshots/screenshot2.png?raw=true
- https://github.com/gurka/OpenCrystalCaves/raw/master/screenshots/screenshot3.png?raw=true
lang:
- C++
license:
- MIT
originals:
- Crystal Caves
repo: https://github.com/gurka/OpenCrystalCaves
type: remake
updated: 2017-09-08
- name: OpenD2
development: sporadic
images:
- https://i.imgur.com/RFNbRiT.png
info: Needs original Diablo II game data
lang:
- C
- C++
license:
- GPL3
content: commercial
originals:
- Diablo II
repo: https://github.com/eezstreet/OpenD2
status: unplayable
type: remake
updated: 2018-06-17
- name: openDarkEngine
images:
- https://a.fsdn.com/con/app/proj/opde/screenshots/51078.jpg/182/137
- https://a.fsdn.com/con/app/proj/opde/screenshots/50724.jpg/182/137
lang:
- C++
license:
- GPL2
development: halted
originals:
- Thief
repo: https://github.com/volca02/openDarkEngine
status: unplayable
type: remake
updated: 2016-11-30
- name: OpenDeathValley
lang:
- C
license:
- GPL3
development: sporadic
originals:
- 'Desperados: Wanted Dead or Alive'
repo: https://github.com/OpenDeathValley/OpenDeathValley
type: remake
updated: 2016-06-15
- name: opendf
lang:
- C++
license:
- GPL3
development: sporadic
originals:
- 'The Elder Scrolls II: Daggerfall'
repo: https://github.com/kcat/opendf
status: unplayable
type: remake
updated: 2015-07-17
- name: OpenDiablo2
type: remake
originals:
- Diablo II
repo: https://github.com/OpenDiablo2/OpenDiablo2
url: https://opendiablo2.com/
development: active
status: semi-playable
lang:
- Go
framework:
- Ebiten
license:
- As-is
content: commercial
info: Needs original Diablo II + Lord of Destruction game data.
updated: 2019-11-09
images:
- https://raw.githubusercontent.com/OpenDiablo2/OpenDiablo2/master/docs/MainMenuSS.png
- https://raw.githubusercontent.com/OpenDiablo2/OpenDiablo2/master/docs/SelectHeroSS.png
- name: OpenDominion
type: clone
originals:
- Dominion
repo: https://github.com/OpenDominion/OpenDominion
url: https://beta.opendominion.net/
development: active
status: playable
multiplayer:
- Online
lang:
- PHP
framework:
- Laravel
license:
- AGPL3
content: open
info: The project is a text-based PBBG (Persistant Browser-Based Game) played in the web browser on both desktop and mobile.
updated: 2020-08-31
- name: openDOW
lang:
- C
license:
- GPL3
development: sporadic
originals:
- Dogs of War
repo: https://github.com/rofl0r/openDOW
type: remake
updated: 2015-05-15
- name: OpenDrakan
development: active
info: Needs original game data
lang:
- C++
license:
- GPL3
content: commercial
originals:
- 'Drakan: Order of the Flame'
repo: https://github.com/Zalasus/opendrakan
status: unplayable
type: remake
updated: 2018-06-17
- name: OpenDUNE
lang:
- C
license:
- GPL2
development: active
originals:
- Dune 2
repo: https://github.com/OpenDUNE/OpenDUNE
type: remake
url: http://www.opendune.org/
- name: OpenDungeons
images:
- https://raw.githubusercontent.com/OpenDungeons/opendungeons.github.io/master/media/images/0.5.0_attacking.jpg
- https://raw.githubusercontent.com/OpenDungeons/opendungeons.github.io/master/media/images/0.5.0_dungeon_and_skullflags.jpg
- https://raw.githubusercontent.com/OpenDungeons/opendungeons.github.io/master/media/images/0.5.0_mainnewsimg.png
- https://raw.githubusercontent.com/OpenDungeons/opendungeons.github.io/master/media/images/0.5.0_research%20tree.jpg
- https://raw.githubusercontent.com/OpenDungeons/opendungeons.github.io/master/media/images/0.5.0_rooms.jpg
lang:
- C++
license:
- GPL3
- Multiple
development: active
originals:
- Dungeon Keeper
repo: https://github.com/OpenDungeons/OpenDungeons
type: clone
url: https://opendungeons.github.io/
- name: OpenEtG
lang:
- JavaScript
license:
- MIT
development: active
originals:
- Elements
repo: https://github.com/serprex/openEtG
type: remake
updated: 2015-09-25
url: http://etg.dek.im/
- name: OpenFire
lang:
- C
license:
- MIT
development: active
originals:
- Fire Power
repo: https://github.com/Last-Minute-Creations/openFire
type: clone
updated: 2020-08-31
- name: OpenFNaF
originals:
- Five Nights at Freddy's
type: clone
repo: 'https://github.com/MotoLegacy/OpenFNaF'
development: sporadic
status: semi-playable
content: free
lang:
- C
framework:
- SFML
license:
- MIT
updated: '2020-07-24'
- name: OpenGeneral
lang:
- C++
license:
- BSD
development: sporadic
originals:
- Panzer General
type: remake
updated: 2018-10-06
url: http://www.open-general.com
- name: OpenGGS
lang:
- C++
license:
- GPL2
development: active
originals:
- The Great Giana Sisters
repo: https://github.com/bugix/OpenGGS
type: remake
updated: 2020-08-25
- name: opengl_test_drive_clone
images:
- http://antongerdelan.net/blog/images/tdrive_speedo.png
- http://antongerdelan.net/blog/images/tdrive_tacho.png
lang:
- C
license:
- GPL3
originals:
- Test Drive
repo: https://github.com/capnramses/opengl_test_drive_clone
type: remake
updated: 2015-05-03
url: http://antongerdelan.net/blog/?post=2014_12_10_test_drive
- name: Openglad
images:
- http://snowstorm.sourceforge.net/screenshots/1.png
- http://snowstorm.sourceforge.net/screenshots/2.png
- http://snowstorm.sourceforge.net/screenshots/3.png
- http://snowstorm.sourceforge.net/screenshots/4.png
lang:
- C++
license:
- GPL2
development: sporadic
originals:
- Gladiator
repo: https://sourceforge.net/projects/snowstorm/
type: remake
url: http://snowstorm.sourceforge.net/cgi-bin/site.cgi
- name: OpenGoo
lang:
- C
license:
- GPL3
development: halted
framework:
- Qt
originals:
- World of Goo
repo: https://github.com/Mandarancio/OpenGOO
status: unplayable
type: remake
updated: 2013-05-29
url: http://mandarancio.github.io/OpenGOO/
- name: OpenGothic
originals:
- Gothic
type: remake
repo: 'https://github.com/Try/OpenGothic'
feed: 'https://github.com/Try/OpenGothic/releases.atom'
development: active
status: semi-playable
content: commercial
lang:
- C++
license:
- MIT
updated: '2019-11-01'
images:
- https://user-images.githubusercontent.com/122894/66703709-90be5680-ed15-11e9-8565-476e7a3de8fc.png
- https://user-images.githubusercontent.com/122894/66703728-ba777d80-ed15-11e9-8bc3-fda0f47e4e21.png
- https://user-images.githubusercontent.com/122894/64069339-054aa380-cc48-11e9-872b-8161d7600161.png
- name: OpenGTA
lang: