-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy patho.yaml
3180 lines (3026 loc) · 75.8 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
langs:
- Swift
licenses:
- As-is
content: commercial
development: halted
originals:
- Octopus
status: playable
repo: https://github.com/roger-wetzel/Octopus
type: remake
updated: 2016-02-08
- name: OceanPop
images:
- https://raw.githubusercontent.com/sharkwouter/oceanpop/1.0/screenshot.jpg
langs:
- C++
licenses:
- MIT
development: active
originals:
- HuniePop
info: HuniePop without the Hunnies
repo: https://github.com/sharkwouter/oceanpop
status: playable
type: clone
updated: 2022-10-23
- name: Odamex
langs:
- C
licenses:
- GPL2
development: active
originals:
- Doom
- Heretic
- Hexen
repo: https://github.com/odamex/odamex
status: playable
type: remake
url: https://odamex.net
updated: 2019-11-20
images:
- https://odamex.net/w/images/thumb/8/8b/Odamex-r103-winxp.png/640px-Odamex-r103-winxp.png
- https://odamex.net/w/images/thumb/b/be/Odamex-r86-fbsd62.png/640px-Odamex-r86-fbsd62.png
- https://odamex.net/w/images/thumb/8/8d/Odamex-r100-openbsd.png/640px-Odamex-r100-openbsd.png
- https://odamex.net/w/images/thumb/8/8c/Odamex-r120-solaris.png/640px-Odamex-r120-solaris.png
- https://odamex.net/w/images/thumb/0/01/Odamex-r166-linuxppc.png/640px-Odamex-r166-linuxppc.png
- https://odamex.net/w/images/thumb/7/74/Odamex-r166-osxppc.png/640px-Odamex-r166-osxppc.png
- name: Ogrian Carpet
originals:
- Magic Carpet
type: similar
repo: 'https://sourceforge.net/projects/ogrian/'
url: https://ogrian.sourceforge.net
development: halted
status: playable
content: open
langs:
- C++
licenses:
- MIT
updated: 2021-08-10
images:
- https://a.fsdn.com/con/app/proj/ogrian/screenshots/28162.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/ogrian/screenshots/28168.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/ogrian/screenshots/28166.jpg/max/max/1
- name: Omega Race Remake
langs:
- C#
frameworks:
- XNA
licenses:
- As-is
development: halted
originals:
- Omega Race
status: unplayable
repo: https://github.com/UnforgivenRob/Omega-Race-Remake
type: clone
updated: 2015-05-29
- name: Omnispeak
images:
- https://davidgow.net/images/omnispeak-3.png
- https://davidgow.net/images/omnispeak-4.png
- https://davidgow.net/images/omnispeak-5.png
langs:
- C
frameworks:
- OpenGL
licenses:
- GPL2
content: commercial
development: sporadic
originals:
- Commander Keen Series
status: playable
repo: https://github.com/sulix/omnispeak
type: remake
updated: 2021-12-01
url: https://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
langs:
- Lua
licenses:
- GPL3
development: halted
originals:
- Sensitive
status: semi-playable
type: remake
updated: 2019-11-20
url: https://gordebak.itch.io/onewaytogo
- name: Oolite
images:
- https://camo.githubusercontent.com/7891aa32f19781623450c1a790611998ca9af4fc8b1c45ef2f73483ededc7524/687474703a2f2f6f6f6c6974652e6f72672f696d616765732f67616c6c6572792f6c617267652f616e6f746865725f636f6d6d616e6465722d3231303231305f4c656176696e67436f72696f6c6973416761696e2e706e67
licenses:
- GPL2
development: active
originals:
- Elite
status: playable
repo: https://github.com/OoliteProject/oolite
type: clone
url: http://www.oolite.org/
updated: 2018-10-06
- name: Open BattleChess
langs:
- C#
licenses:
- As-is
development: halted
originals:
- Battle Chess
status: unplayable
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: https://www.chronocrash.com/forum/#openbor.12
development: sporadic
status: playable
langs:
- C
frameworks:
- SDL2
licenses:
- 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: OpenBW
originals:
- StarCraft
type: remake
content: commercial
status: unplayable
langs:
- C++
licenses:
- As-is
development: halted
repo: https://github.com/OpenBW/openbw
url: http://www.openbw.com/
added: 2022-08-15
updated: 2024-06-16
video:
youtube: AQUYZHsdhFk
- name: openc2e
langs:
- C++
licenses:
- LGPL2
- GPL2
development: sporadic
originals:
- Creatures
status: unplayable
repo: https://github.com/openc2e/openc2e
type: remake
updated: 2020-05-05
url: https://creatures.wiki/Openc2e
images:
- https://creatures.wiki/images/d/df/C2-vista-injector.jpg
- https://creatures.wiki/images/2/22/Openc2e-c1-april2008.jpg
- name: Open Fodder
langs:
- C++
licenses:
- GPL3
development: sporadic
originals:
- Cannon Fodder
repo: https://github.com/OpenFodder/openfodder
status: playable
type: remake
updated: 2022-11-29
url: http://openfodder.com/
images:
- https://user-images.githubusercontent.com/1327406/49718991-f1bd6e00-fcaf-11e8-88e3-68136828c2d1.png
- name: OpenGOAL
originals:
- 'Jak and Daxter: The Precursor Legacy'
type: remake
repo: https://github.com/open-goal/jak-project
feed: https://github.com/open-goal/jak-project/releases.atom
url: https://opengoal.dev/
development: very active
status: playable
content: commercial
langs:
- C++
- Common Lisp
licenses:
- ISC
info: >-
A project that aims to provide a complete PC port for the first Jak and
Daxter game by providing a open implementation of a compiler for Naughty
Dog's GOAL language, a decompiler for the compiled game and an asset
extraction tool.
added: '2022-08-28'
updated: 2024-06-07
images:
- https://opengoal.dev/assets/images/lurker-chilling_2022-02-04-93d12659deb4cd4cdadda716de276725.png
- https://opengoal.dev/assets/images/jak-and-daxter-are-stunned_2022-02-04-12bbd4d7353f20638b9f1994ff8cbe24.png
- https://opengoal.dev/assets/images/robotboss-appears_2022-02-04-2455f3b01898dd59e806044daa8ee017.png
video:
youtube: ZO7A22btJc0
- name: Open Greedy
originals:
- Pac-Man
type: remake
repo: https://github.com/atroel/open-greedy
url: https://troel.net/opengreedy/
development: halted
status: playable
content: free
langs:
- C
frameworks:
- SDL2
licenses:
- GPL2
info: >-
This is an engine recreation of a Pac-Man clone called Greedy by French
demogroup Eclipse. Originally written for DOS and sold as shareware, Greedy
was later ported to Windows and eventually made a free, but not open source
game. Open Greedy attempts to recreate the game's engine for proper
cross-platform compatibility.
updated: 2021-08-18
images:
- https://troel.net/opengreedy/menu_thumbnail.png
- https://troel.net/opengreedy/greedy_xp_01_thumbnail.png
- https://troel.net/opengreedy/credits_thumbnail.png
- name: Open Hexagon
images:
- https://vittorioromeo.info/Resources/img/openHexagon.png
langs:
- C++
licenses:
- AFL3
development: sporadic
originals:
- Super Hexagon
repo: https://github.com/SuperV1234/SSVOpenHexagon
status: playable
type: clone
updated: 2013-09-11
url: https://vittorioromeo.info/projects.html
video:
youtube: Wth0Z2eMezE
- name: Open Horizon
frameworks:
- nya-engine
images:
- https://camo.githubusercontent.com/1b2f1c9e758639b57b2a123204f3211de2e490a357ac37c83f08056e7da9f757/687474703a2f2f7a7873747564696f2e6f72672f626c6f672f77702d636f6e74656e742f75706c6f6164732f323031362f30312f6f70656e2d686f72697a6f6e2d656666656374732e706e67
- https://camo.githubusercontent.com/d5b184385d506a125227319be547d4e0cdbb75f2a5724e427d44e6b267edae7f/687474703a2f2f7a7873747564696f2e6f72672f626c6f672f77702d636f6e74656e742f75706c6f6164732f323031362f30372f4d697373696f6e30312e706e67
- https://camo.githubusercontent.com/3c5f8dbdaa0c156b984c38488c3a9edfd0c84705ed3aeff6a454347824c11222/687474703a2f2f7a7873747564696f2e6f72672f626c6f672f77702d636f6e74656e742f75706c6f6164732f323031362f30372f4d697373696f6e30332e706e67
langs:
- C++
licenses:
- MIT
content: commercial
development: halted
status: semi-playable
originals:
- 'Ace Combat: Assault Horizon'
repo: https://github.com/undefined-darkness/open-horizon
type: remake
updated: 2021-02-25
url: http://zxstudio.org/blog/author/razgriz/
- name: Open Imperium Galactica
langs:
- Java
licenses:
- LGPL3
content: free
development: active
originals:
- Imperium Galactica
repo: https://github.com/akarnokd/open-ig
feed: https://github.com/akarnokd/open-ig/releases.atom
status: playable
type: remake
added: 2013-12-11
updated: 2024-06-18
url: https://open-ig-dev.blogspot.com
images:
- https://raw.githubusercontent.com/akarnokd/open-ig/master/src/hu/openig/gfx/OpenIG_Splash_medium.png
video:
youtube: FnlIEwW2OkM
- name: openjazz.github.io
originals:
- Jazz Jackrabbit
type: remake
repo: 'https://github.com/OpenJazz/openjazz.github.io'
url: 'https://openjazz.github.io'
development: active
status: playable
content: free
langs:
- JavaScript
licenses:
- Custom
info: Play Jazz Jackrabbit in your browser!
added: '2024-09-21'
updated: '2024-09-21'
- name: Open Jumpgate
langs:
- C++
frameworks:
- OGRE
licenses:
- GPL2
content: open
development: sporadic
originals:
- 'Jumpgate: The Reconstruction Initiative'
status: unplayable
type: remake
updated: 2021-09-17
repo: https://sourceforge.net/projects/opengate/
url: https://opengate.sourceforge.net/
images:
- https://a.fsdn.com/con/app/proj/opengate/screenshots/299347.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/opengate/screenshots/313299.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/opengate/screenshots/screenshot%5B2013.9.20-0%3A42%3A58%5D-1024-600.png/max/max/1
- name: Open Kick-Off
type: remake
originals:
- Kick Off
repo: https://github.com/ssenegas/kickoff
development: halted
status: playable
langs:
- Java
frameworks:
- libGDX
licenses:
- MIT
content: open
added: 2019-03-29
updated: 2024-06-19
images:
- https://user-images.githubusercontent.com/9662172/39470980-0051a248-4d41-11e8-9a60-182320e25b57.PNG
- name: OpenLiberty
info: A open-source Grand Theft Auto III reimplementation on the Godot Engine
frameworks:
- Godot
langs:
- GDScript
licenses:
- MIT
content: commercial
development: very active
originals:
- Grand Theft Auto III
repo: https://github.com/FOSS-Supremacy/OpenLiberty
status: unplayable
type: remake
added: 2024-08-18
updated: 2024-08-18
images:
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image1.png
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image2.png
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image3.png
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image4.png
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image5.png
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image6.png
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image7.png
- https://raw.githubusercontent.com/FOSS-Supremacy/re3-gd/main/screenshots/image8.png
video:
youtube: Z3Cd_NBYUfI
- name: Open Meridian
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Meridian 59
status: playable
repo: https://github.com/OpenMeridian/Meridian59
type: remake
updated: 2015-06-02
url: https://openmeridian.org
images:
- https://openmeridian.org/wp-content/uploads/2014/01/ancient-trinket.png
- https://openmeridian.org/wp-content/uploads/2014/01/battle-arena.png
- https://openmeridian.org/wp-content/uploads/2014/01/new-lore.png
- name: Open Panzer
images:
- https://user-images.githubusercontent.com/1650801/74080138-50fc4700-4a49-11ea-8fbc-a571b6d4ce3c.png
- https://i.imgur.com/NiJGQ.jpg
licenses:
- GPL2
langs:
- JavaScript
development: halted
originals:
- Panzer General
status: playable
repo: https://github.com/nicupavel/openpanzer
type: remake
added: 2012-06-29
updated: 2024-06-20
url: https://panzermarshal.com
- name: Open Portal Engine
type: clone
originals:
- Portal
repo: https://github.com/lpuglia/Open-Portal
development: halted
status: playable
langs:
- C++
frameworks:
- OpenGL
licenses:
- As-is
content: free
added: 2019-05-24
updated: 2019-05-24
video:
youtube: tqqeUCzWcdQ
- name: Open Quartz
originals:
- Quake
type: remake
repo: 'https://sourceforge.net/projects/openquartz/'
url: https://openquartz.sourceforge.net/index.html
development: halted
status: semi-playable
multiplayer:
- Competitive
- Online
- LAN
content: open
langs:
- C
licenses:
- GPL2
info: >-
A project to create a free game data set for the Quake engine, complete with a
binary executable. Only the multiplayer component has been completed, but it can
also run Quake mods and custom maps.
updated: 2021-08-23
images:
- https://openquartz.sourceforge.net/images/oq002.jpg
- https://openquartz.sourceforge.net/images/oq003.jpg
- https://openquartz.sourceforge.net/images/oq001.jpg
- name: Open Rails
langs:
- C#
frameworks:
- XNA
licenses:
- GPL3
development: active
originals:
- Microsoft Train Simulator
status: playable
repo: https://github.com/openrails/openrails
type: clone
updated: 2022-10-15
url: http://openrails.org/
video:
youtube: RThvP7OvDxM
- 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
langs:
- C++
frameworks:
- Qt
- SFML
licenses:
- 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.com/open-runescape-classic/core
url: https://rsc.vet
development: active
status: playable
multiplayer:
- Online
langs:
- Java
frameworks:
- OpenGL
licenses:
- AGPL3
info: Recreation of the discontinued classic variation of the game.
added: 2019-04-29
updated: 2024-06-22
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: https://opensnc.sourceforge.net/home/index.php
development: halted
status: playable
langs:
- C
frameworks:
- Allegro
licenses:
- GPL2
content: commercial
info: The game development stopped at 2010. Open Surge the official continuation with fully free assets.
updated: 2019-09-17
images:
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/0.png
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/1.png
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/2.png
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/4.png
video:
youtube: 2ke0ct4rVWY
- name: Open Surge
images:
- https://opensurge2d.org/surge-demo.gif
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/4.png
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/0.png
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/3.png
- https://opensnc.sourceforge.net/home/screenshots/0_1_3/9.png
langs:
- C
frameworks:
- Allegro
licenses:
- GPL3
development: active
originals:
- Sonic the Hedgehog
status: playable
repo: https://github.com/alemart/opensurge
type: clone
updated: 2019-08-27
url: https://opensurge2d.org
- name: Open Syobon Action
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
development: complete
originals:
- Shobon no Action
status: playable
repo: https://sourceforge.net/projects/opensyobon
type: remake
updated: 2022-06-20
url: https://www.jezng.com/open-syobon-action.js/
video:
youtube: rzP0FeBN_AE
- name: OpenTS2
originals:
- The Sims 2
type: remake
repo: 'https://github.com/LazyDuchess/OpenTS2'
development: active
status: unplayable
content: commercial
langs:
- 'C#'
frameworks:
- Unity
licenses:
- MPL
updated: '2023-02-11'
- name: Open Valley
originals:
- Stardew Valley
type: similar
repo: 'https://gitea.it/rixty/OpenValley'
url: 'https://mastodon.gamedev.place/@OpenValley'
feed: 'https://mastodon.gamedev.place/@OpenValley.rss'
development: halted
status: semi-playable
content: open
langs:
- C++
frameworks:
- SDL2
licenses:
- CC-BY-NC-SA
info: Made in Flare engine
added: '2021-05-29'
updated: 2024-06-23
images:
- >-
https://cdn.masto.host/mastodongamedevplace/media_attachments/files/106/239/851/573/039/205/original/ccf384e1d27196dd.png
- name: OpenVic
originals:
- Victoria II
type: remake
repo: 'https://github.com/OpenVicProject/OpenVic'
url: 'https://www.openvic.com'
feed: 'https://github.com/OpenVicProject/OpenVic/releases.atom'
development: active
status: unplayable
content: commercial
langs:
- GDScript
frameworks:
- Godot
licenses:
- GPL3
updated: '2023-08-28'
- name: Open Zelda
langs:
- C++
licenses:
- 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.
langs:
- C++
frameworks:
- OpenGL
- SDL2
licenses:
- Zlib
development: halted
originals:
- 'Cube 2: Sauerbraten'
repo: https://github.com/team-cube/open-cube
status: semi-playable
type: remake
added: 2016-04-20
updated: 2024-06-24
url: https://team-cube.github.io
- name: open-heavy-smash
langs:
- C++
licenses:
- As-is
development: halted
originals:
- Heavy Smash
status: unplayable
repo: https://github.com/namelivia/open-heavy-smash
type: remake
updated: 2015-05-28
- name: Open76
originals:
- Interstate '76
type: remake
repo: 'https://github.com/r1sc/Open76'
development: halted
status: semi-playable
content: commercial
langs:
- C#
frameworks:
- Unity
licenses:
- GPL3
info: A reimplementation in the Unity engine
updated: 2021-12-05
images:
- https://raw.githubusercontent.com/r1sc/Open76/master/Screenshots/sc1.png
- https://raw.githubusercontent.com/r1sc/Open76/master/Screenshots/sc2.png
- https://raw.githubusercontent.com/r1sc/Open76/master/Screenshots/sc3.png
- name: openage
development: active
frameworks:
- SDL
- OpenGL
images:
- https://openage.sft.mx/pics/openage_0.png
- https://openage.sft.mx/pics/openage_2.png
video:
youtube: 4GujF6YGSBY
langs:
- C++
- Python
licenses:
- 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: https://openage.sft.mx
- name: OpenApoc
langs:
- C++
licenses:
- MIT
development: very active
status: semi-playable
originals:
- 'X-COM: Apocalypse'
content: commercial
frameworks:
- SDL2
repo: https://github.com/OpenApoc/OpenApoc
type: remake
added: 2015-04-04
updated: 2024-06-25
images:
- https://i.imgur.com/CFS3nBK.png
video:
youtube: qMy4dYksZVg
- name: OpenArena
images:
- https://openarena.ws/e107_images/custom/085-8.jpg
- https://openarena.ws/e107_images/custom/085-13.jpg
- https://openarena.ws/e107_images/custom/085-14.jpg
- https://openarena.ws/e107_images/custom/085-16.jpg
langs:
- C
licenses:
- GPL2
development: sporadic
originals:
- Quake 3
status: playable
repo: https://github.com/OpenArena/engine
type: remake
updated: 2019-08-27
url: https://openarena.ws/
- name: OpenArena (gladiator management game)
originals:
- Areena 5
type: clone
repo: 'https://gitlab.com/Mige5/openarena'
development: sporadic
status: unplayable
content: commercial
langs:
- Java
licenses:
- GPL3
added: '2022-07-20'
updated: 2024-06-26
- name: OpenAWE
type: remake
originals:
- Alan Wake
repo: https://github.com/OpenAWE-Project/OpenAWE
development: active
status: unplayable
langs:
- C++
licenses:
- GPL3
content: commercial
updated: 2021-07-04
images:
- https://raw.githubusercontent.com/OpenAWE-Project/OpenAWE/master/screenshots/awan1.png
- name: OpenBiohazard2
originals:
- Resident Evil 2
type: remake
repo: 'https://github.com/samuelyuan/OpenBiohazard2'
url: https://openbiohazard2.github.io/
feed: https://openbiohazard2.github.io/feed.xml
development: sporadic
status: unplayable
content: commercial
langs:
- Go
frameworks:
- OpenGL
licenses:
- MIT
added: '2021-01-12'
updated: 2024-06-27
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
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
content: commercial
updated: 2019-08-06
- name: OpenBlok
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
development: sporadic
originals:
- Tetris
status: playable
repo: https://github.com/mmatyas/openblok
type: clone
updated: 2018-12-05
images:
- https://raw.githubusercontent.com/mmatyas/openblok/master/etc/promo/screenshot01.png
- name: OpenBound
originals:
- Gunbound
type: remake
repo: 'https://github.com/WickedPeanuts/OpenBound'
development: halted
status: playable
multiplayer:
- Competitive
- Online
content: commercial
langs:
- 'C#'
frameworks:
- MonoGame
licenses:
- GPL3
info: >-
This project aims to mimic the older PC versions of Gunbound with optimized
behavior, engine and gameplay elements.
added: 2022-05-14
updated: 2024-06-28
images:
- 'https://i.imgur.com/JxkCFWo.png'
- 'https://i.imgur.com/ErNl96t.png'
video:
youtube: kdJmLMMqKg8
- name: OpenBreed
originals:
- Alien Breed
type: remake
repo: 'https://github.com/mrpetro/OpenBreed'
development: sporadic
status: unplayable
content: commercial
langs:
- 'C#'
frameworks:
- .NET
- OpenTK
licenses:
- As-is
updated: 2022-04-07
video:
youtube: goRUP1GDIGo
- name: OpenBVE
type: clone
originals:
- BVE Trainsim
repo: https://github.com/leezer3/OpenBVE
url: https://openbve-project.net/
development: very active
status: playable
langs:
- C#
licenses:
- PD
content: open
added: 2019-09-17
updated: 2024-06-29
images:
- https://openbve-project.net/images/driving_1.jpg
- https://openbve-project.net/images/driving_2.jpg
- https://openbve-project.net/images/driving_3.jpg
- name: OpenC1
development: halted
langs:
- C#
licenses:
- Custom
content: commercial