forked from opengaming/osgameclones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths.yaml
1800 lines (1700 loc) · 40.1 KB
/
s.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: SanAndreasUnity
type: remake
originals:
- 'Grand Theft Auto: San Andreas'
repo: https://github.com/GTA-ASM/SanAndreasUnity
development: active
langs:
- C#
status: playable
multiplayer:
- Online
- LAN
frameworks:
- Unity
licenses:
- MIT
content: commercial
info: Open source recreation of GTA San Andreas in Unity
updated: 2019-08-05
images:
- https://cloud.githubusercontent.com/assets/557828/24571348/d964f098-1670-11e7-8759-0160dbf5bcb5.png
- https://camo.githubusercontent.com/625225a8ad4d5a79f5962aa107c6f912ba2ae73b/68747470733a2f2f692e696d6775722e636f6d2f48583937386d722e706e67
video:
youtube: PItR-0FF7JI
- name: sandspiel
originals:
- Powder Game
type: clone
repo: https://github.com/maxbittker/sandspiel
url: https://sandspiel.club/
development: sporadic
content: open
langs:
- Rust
- JavaScript
frameworks:
- WebGL
licenses:
- MIT
updated: 2019-11-15
images:
- https://raw.githubusercontent.com/MaxBittker/sandspiel/master/Screenshot.png
- name: sccopter
langs:
- C++
licenses:
- MIT
development: sporadic
originals:
- SimCopter
repo: https://github.com/fr0zi/sccopter
status: unplayable
type: remake
updated: 2019-01-21
- name: Scorched Moon
langs:
- Python
licenses:
- GPL3
development: sporadic
originals:
- Moonbase Commander
repo: https://github.com/Scorched-Moon/client
type: remake
updated: 2020-08-25
- name: Scorched3D
langs:
- C++
frameworks:
- SDL
- OpenGL
licenses:
- GPL2
content: open
development: halted
originals:
- Scorched Earth
status: playable
multiplayer:
- Online
- Competitive
- Hotseat
repo: https://sourceforge.net/projects/scorched3d/
type: clone
updated: 2022-02-03
url: http://www.scorched3d.co.uk/
images:
- https://a.fsdn.com/con/app/proj/scorched3d/screenshots/6702.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/scorched3d/screenshots/8943.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/scorched3d/screenshots/6704.jpg/max/max/1
video:
youtube: qyf8sghZOZ0
- name: SCSharp
langs:
- C#
licenses:
- MIT
development: halted
originals:
- Starcraft
repo: https://github.com/toshok/scsharp
status: unplayable
type: remake
updated: 2021-01-07
video:
youtube: nmYxGlAo-s0
- name: ScummVM
images:
- https://www.scummvm.org/data/screenshots/lucasarts/tentacle/tentacle_dos_en_1_1_full.png
- https://www.scummvm.org/data/screenshots/revolution/sky/sky_dos_en_1_1_full.png
- https://www.scummvm.org/data/screenshots/perfect/dw2/dw2_dos_en_1_1_full.png
- https://www.scummvm.org/data/screenshots/sierra/pq3/pq3_amiga_en_1_1_full.png
- https://www.scummvm.org/data/screenshots/revolution/sword1/sword1_win_en_1_1_full.png
info: List of supported games <a href="http://scummvm.org/compatibility/">is here</a>
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
development: very active
originals:
- SCUMM
- Blade Runner
repo: https://github.com/scummvm/scummvm
status: playable
type: remake
url: http://scummvm.org/
updated: 2021-04-19
- name: SDL Asylum
images:
- https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/136705.jpg
- https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/134775.jpg
- https://a.fsdn.com/con/app/proj/sdl-asylum/screenshots/136451.jpg
langs:
- C++
frameworks:
- SDL
licenses:
- GPL3
content: open
development: halted
originals:
- Asylum
status: playable
repo: https://sourceforge.net/projects/sdl-asylum/
type: remake
updated: 2022-08-05
url: http://sdl-asylum.sourceforge.net/
- name: SDL Bomber
frameworks:
- SDL
images:
- http://www.linuxmotors.com/linux/SDL_bomber/bomber.gif
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Bomberman
repo: http://www.linuxmotors.com/linux/SDL_bomber/downloads/
status: playable
type: remake
updated: 2020-08-25
url: http://www.linuxmotors.com/linux/SDL_bomber/
- name: SDL Sopwith
frameworks:
- SDL
images:
- http://sdl-sopwith.sourceforge.net/sshot/title.png
- http://sdl-sopwith.sourceforge.net/sshot/runway.png
- http://sdl-sopwith.sourceforge.net/sshot/sopwith_metacity.png
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Sopwith
repo: https://sourceforge.net/projects/sdl-sopwith/
status: playable
type: remake
updated: 2014-03-17
url: http://sdl-sopwith.sourceforge.net/
- name: SDLPoP
langs:
- C
licenses:
- GPL3
development: active
originals:
- Prince of Persia
repo: https://github.com/NagyD/SDLPoP
status: playable
type: remake
updated: 2015-05-30
url: http://www.popot.org/get_the_games.php?game=SDLPoP
- name: Sea-Wolf
type: remake
originals:
- Sea Wolf
repo: https://github.com/DanJP2016/Sea-Wolf
development: complete
status: playable
langs:
- JavaScript
frameworks:
- Phaser
licenses:
- As-is
content: free
updated: 2019-05-09
- name: Secret Agent Remake
originals:
- Secret Agent
type: clone
repo: 'https://sourceforge.net/projects/secretagentremake/'
development: halted
status: semi-playable
content: free
langs:
- Java
frameworks:
- OpenGL
licenses:
- As-is
info: 'Remake of old game Secret Agent (more weapons, better AI)'
updated: '2021-09-12'
images:
- >-
https://a.fsdn.com/con/app/proj/secretagentremake/screenshots/sam3.png/max/max/1
- >-
https://a.fsdn.com/con/app/proj/secretagentremake/screenshots/sam2.png/max/max/1
- >-
https://a.fsdn.com/con/app/proj/secretagentremake/screenshots/sam4.png/max/max/1
- name: The Secret Chronicles of Dr. M.
langs:
- C++
licenses:
- GPL3
development: active
originals:
- Mario World
repo: https://github.com/secretchronicles/TSC
type: remake
updated: 2018-10-06
url: https://secretchronicles.org
- name: Secret Maryo Chronicles
info: 'SMC is no longer under active development. However, there is now a new game based on SMC: https://github.com/secretchronicles/TSC'
images:
- http://secretmaryo.org/images/screenshot/2.0/media/1.png
- http://secretmaryo.org/images/screenshot/2.0/media/2.png
- http://secretmaryo.org/images/screenshot/2.0/media/3.png
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Mario World
repo: https://github.com/FluXy/SMC
type: remake
updated: 2018-10-06
url: http://secretmaryo.org/
- name: sensitive-js
images:
- https://raw.githubusercontent.com/bylexus/sensitive-js/master/screen-remake.png
langs:
- JavaScript
licenses:
- ISC
development: halted
originals:
- Sensitive
repo: https://github.com/bylexus/sensitive-js
type: remake
updated: 2017-04-27
- name: Serious-Sam-Android
info: 'A port of Serious Sam: the Second Encounter to Android. There is also a fork
for the Pandora.'
langs:
- C++
licenses:
- GPL2
originals:
- 'Serious Sam: the Second Encounter'
development: halted
status: playable
content: commercial
repo: 'https://github.com/aarcangeli/Serious-Sam-Android'
type: remake
updated: 2021-10-25
- name: 'Seven Kingdoms: Ancient Adversaries'
langs:
- C++
licenses:
- GPL2
development: active
originals:
- Seven Kingdoms
repo: https://github.com/the3dfxdude/7kaa
type: remake
url: http://7kfans.com/
updated: 2018-10-06
- name: sfall
development: active
info: Needs full original game
langs:
- C++
- C
- C#
licenses:
- GPL3
content: commercial
originals:
- Fallout 2
repo: https://github.com/phobos2077/sfall
status: playable
type: remake
updated: 2018-06-20
- name: sh3redux
originals:
- Silent Hill 3
type: remake
repo: 'https://github.com/Palm-Studios/sh3redux'
url: 'http://sh3redux.blogspot.com/'
feed: 'http://sh3redux.blogspot.com/feeds/posts/default'
development: halted
status: unplayable
content: commercial
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
info: SILENT HILL 3 Engine Remake in OpenGL and C++
updated: '2020-12-03'
images:
- >-
https://2.bp.blogspot.com/-Y84Ml-Y_vwA/WYxpVeu5mUI/AAAAAAAAAcM/Un6um3dMju41WS06YiwF0lXQ7tTinqMkQCLcBGAs/s1600/texture.png
- >-
https://2.bp.blogspot.com/-QzagT9JWbY4/WVSqo6eUR5I/AAAAAAAAAbU/BrK4OoyGWfMh5JVYxZf8mILI7MiCgySCgCPcBGAYYCw/s1600/font_test.png
- >-
https://4.bp.blogspot.com/-a-PRIyb1wl4/WLIv_inQPkI/AAAAAAAAAZk/5n5VFU5V1sk_YZd20LY44sGZQXLerl9qACLcB/s1600/output2.png
- name: shadow-of-the-beast-html5
frameworks:
- PandaJS
langs:
- JavaScript
licenses:
- Apache
development: active
originals:
- Shadow of the Beast
repo: https://github.com/spleennooname/shadow-of-the-beast-html5
type: remake
updated: 2017-04-04
- name: shadowgrounds
langs:
- C++
licenses:
- Custom
development: halted
originals:
- 'Shadowgrounds: Survivor'
status: unplayable
repo: https://github.com/vayerx/shadowgrounds
type: remake
updated: 2022-07-04
- name: Shining Force 2 Reverse Engineer (SF2RE)
info: reverse engineering project
langs:
- C
licenses:
- As-is
development: sporadic
originals:
- Shining Force II
repo: https://github.com/ShiningForceCentral/SF2RE
type: remake
updated: 2015-05-10
- name: Shining Soul Remake
frameworks:
- pygame
langs:
- Python
licenses:
- As-is
development: halted
originals:
- Shining Soul
repo: https://github.com/CharlieIsMyName/ShiningSoulRemake
type: remake
updated: 2016-04-11
- name: Shockolate
development: active
frameworks:
- SDL2
images:
- https://i.imgur.com/kbVWQj4.gif
info: 'Needs game data from System Shock: Enhanced Edition'
langs:
- C
licenses:
- GPL3
content: commercial
originals:
- System Shock
repo: https://github.com/Interrupt/systemshock
status: playable
type: remake
updated: 2018-06-15
- name: 'Siege of Avalon : Open Source'
images:
- https://a.fsdn.com/con/app/proj/soaos/screenshots/114858.jpg/max/max/1
langs:
- Delphi
licenses:
- Custom
development: halted
originals:
- Siege of Avalon
status: unplayable
repo: https://github.com/CartBlanche/Siege-of-Avalon-Open-Source
type: remake
updated: 2022-03-10
url: https://soaos.sourceforge.net/
- name: 'Signus: The Artefact Wars'
type: remake
originals:
- 'Signus: The Artefact Wars'
repo: 'https://github.com/signus-game/signus'
development: complete
status: playable
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
content: open
info: Complete source port of the original game
updated: 2021-11-12
video:
youtube: SHhLHVwoLFA
- name: Silent Hill 2 Enhancement
originals:
- Silent Hill 2
type: tool
repo: https://github.com/elishacloud/Silent-Hill-2-Enhancements
url: http://www.enhanced.townofsilenthill.com/SH2/
development: active
content: commercial
langs:
- C++
licenses:
- As-is
info: A project designed to enhance Silent Hill 2 graphics and audio for the PC.
updated: 2019-11-15
video:
youtube: 6v1USVhtfjQ
- name: Simitone
type: remake
originals:
- The Sims
repo: https://github.com/riperiperi/Simitone
development: sporadic
status: semi-playable
langs:
- C#
licenses:
- MPL
content: commercial
info: Simitone is a singleplayer only version of FreeSO.
updated: 2019-09-17
- name: SimUnity2
originals:
- The Sims 2
type: remake
repo: 'https://github.com/LazyDuchess/SimUnity2'
development: sporadic
status: unplayable
content: commercial
langs:
- C#
frameworks:
- Unity
licenses:
- As-is
updated: '2021-10-22'
images:
- https://camo.githubusercontent.com/0ad91f5360b892bc22c86f66fab78b0208e5f33077e599d74b3e11b04fb7f99b/68747470733a2f2f63646e2e646973636f72646170702e636f6d2f6174746163686d656e74732f3437393836343834303831313138343132382f3636373431323836333432313531333735392f756e6b6e6f776e2e706e67
- name: Simutrans
images:
- https://www.simutrans.com/images/paksets/pak128.cs.png
- https://www.simutrans.com/images/paksets/pak128.german.png
- https://www.simutrans.com/images/paksets/pak64.png
langs:
- C++
frameworks:
- SDL2
licenses:
- Artistic
development: very active
originals:
- Transport Tycoon
repo: https://github.com/aburch/simutrans
status: playable
multiplayer:
- Online
type: clone
url: http://www.simutrans.com/
updated: 2021-04-26
video:
youtube: e8Wp7rxVg88
- name: Sine
frameworks:
- SFML
images:
- https://i.imgur.com/7W8ZdCS.png
- https://i.imgur.com/IxtKdOS.png
langs:
- C++
licenses:
- MIT
development: sporadic
originals:
- Asteroids
repo: https://github.com/slx7R4GDZM/Sine
status: semi-playable
type: remake
updated: 2016-10-30
- name: Skifree-HTML5-clone
licenses:
- GPL3
development: halted
originals:
- SkiFree
repo: https://github.com/andymason/Skifree-HTML5-clone
type: remake
updated: 2015-06-18
- name: skifree.js
langs:
- JavaScript
licenses:
- Custom
development: active
originals:
- SkiFree
repo: https://github.com/basicallydan/skifree.js
type: remake
updated: 2015-05-02
- name: SLADE
originals:
- Doom
type: tool
repo: https://github.com/sirjuddington/SLADE
url: http://slade.mancubus.net/
development: active
content: swappable
langs:
- C++
licenses:
- GPL2
info: SLADE3 is a modern editor for Doom-engine based games and source ports.
updated: 2019-08-26
images:
- http://slade.mancubus.net/shots/gfx.png
- http://slade.mancubus.net/shots/map.png
- http://slade.mancubus.net/shots/map3d.png
- name: SLASH'EM
images:
- https://i0.wp.com/www.linuxlinks.com/wp-content/uploads/2017/12/Screenshot-SlashEM.png
langs:
- C
licenses:
- NGPL
development: halted
originals:
- NetHack
status: playable
info: SLASH'EM (SuperLotsaAddedStuffHack - Extended Magic) is a variant of Nethack.
repo: https://sourceforge.net/projects/slashem/
type: clone
updated: 2022-05-02
url: http://www.slashem.org/
- name: Slime Volleyball
langs:
- C++
licenses:
- MIT
images:
- https://pixeldoctrine.com/img/slime-volleyball.png
development: complete
content: free
info: reverse-compiled and ported
originals:
- Slime Volleyball
multiplayer:
- Competitive
- Split-screen
repo: https://github.com/highfestiva/life/tree/master/slimevolleyball
status: playable
type: clone
updated: 2019-06-14
url: https://pixeldoctrine.com/slimevolleyball.html
video:
youtube: 3ckvPnatwPs
- name: Slot-Racers
langs:
- C
licenses:
- GPL3
development: halted
originals:
- Slot Racers
repo: https://github.com/Zillode/Slot-Racers
type: remake
updated: 2015-06-25
- name: sm64ex
originals:
- Super Mario 64
type: remake
repo: 'https://github.com/sm64pc/sm64ex'
development: sporadic
status: playable
content: commercial
langs:
- C
frameworks:
- OpenGL
licenses:
- As-is
updated: '2021-07-08'
video:
youtube: iwBCFY7FqlU
- name: snake
licenses:
- WTFPL
images:
- https://raw.githubusercontent.com/spypunk/snake/master/img/screenshot.png
langs:
- Java
development: active
originals:
- Snake
repo: https://github.com/spypunk/snake
status: playable
type: remake
updated: 2016-09-14
- name: Snipes
development: complete
frameworks:
- SDL2
info: reverse-engineered from original binary, aims for 100% logic compatibility with original game
langs:
- C++
licenses:
- Custom
content: free
originals:
- Snipes
repo: https://github.com/Davidebyzero/Snipes
status: playable
type: remake
updated: 2017-04-04
url: https://www.vogons.org/viewtopic.php?f=7&t=49073
- name: Solarus
images:
- https://www.solarus-games.org/data/en/entities/page/engine/images/screenshot-quest-editor-01.png
- https://www.solarus-games.org/data/en/entities/page/engine/images/screenshot-quest-editor-02.png
- https://www.solarus-games.org/data/en/entities/page/engine/images/screenshot-quest-editor-03.png
- https://www.solarus-games.org/data/en/entities/page/engine/images/screenshot-quest-editor-04.png
langs:
- C++
- Lua
licenses:
- GPL3
- CC-BY-SA
development: active
originals:
- Legend of Zelda - A Link to the Past
repo: https://gitlab.com/solarus-games/solarus
type: tool
updated: 2020-08-25
url: http://www.solarus-games.org/
video:
youtube: vt07FwzLo9A
- name: SolarWolf
images:
- https://pygame.org/shredwheat/solarwolf/screen/shot1.jpg
- https://pygame.org/shredwheat/solarwolf/screen/shot2.jpg
- https://pygame.org/shredwheat/solarwolf/screen/shot3.jpg
- https://pygame.org/shredwheat/solarwolf/screen/shot4.jpg
- https://pygame.org/shredwheat/solarwolf/screen/shot5.jpg
langs:
- Python
frameworks:
- pygame
licenses:
- LGPL2
originals:
- Solar Fox
status: playable
development: halted
type: remake
updated: 2022-08-11
url: https://pygame.org/shredwheat/solarwolf/index.shtml
- name: Soldank
originals:
- Soldat
type: remake
repo: 'https://github.com/smokku/soldank'
development: active
status: unplayable
multiplayer:
- Online
- Competitive
content: open
langs:
- Rust
licenses:
- MIT
updated: '2021-11-10'
images:
- 'https://raw.githubusercontent.com/smokku/soldank/master/sshot.png'
- name: Sonic Adventure Toolset
originals:
- Sonic Adventure
type: tool
repo: 'https://github.com/sonicretro/sa_tools'
url: 'http://info.sonicretro.org/SA_Tools'
development: active
content: commercial
langs:
- 'C#'
frameworks:
- .NET
licenses:
- As-is
info: >-
SA Tools is a toolkit for modifying and extracting data from the Sonic
Adventure series of games
updated: '2019-11-27'
images:
- >-
https://github.com/sonicretro/sa_tools/raw/Docs/Documentation/images/project_manager_split_window.png
- >-
https://github.com/sonicretro/sa_tools/raw/Docs/Documentation/images/SADXLVL2_Editor_Overview.png
- name: Sonic Robo Blast 2
images:
- https://www.srb2.org/wp-content/uploads/gfz1st.png
- https://www.srb2.org/wp-content/uploads/GFZ2.png
- https://www.srb2.org/wp-content/uploads/gfz3knux.png
langs:
- C
- Lua
frameworks:
- SDL2
licenses:
- GPL2
content: free
development: active
originals:
- Sonic the Hedgehog
status: playable
repo: https://github.com/STJr/SRB2
type: similar
updated: 2021-09-07
url: https://www.srb2.org/
info: SRB2 is closely inspired by the original Sonic games from the Sega Genesis, and attempts to recreate the design in 3D.
- name: Sonic-1-2-2013-Decompilation
originals:
- Sonic the Hedgehog
type: remake
repo: 'https://github.com/Rubberduckycooly/Sonic-1-2-2013-Decompilation'
feed: 'https://github.com/Rubberduckycooly/Sonic-1-2-2013-Decompilation/releases.atom'
development: active
status: playable
content: commercial
frameworks:
- SDL2
licenses:
- Custom
updated: '2021-07-12'
video:
youtube: gzIfRW91IxE
- name: Sonic-CD-11-Decompilation
originals:
- Sonic the Hedgehog
type: remake
repo: 'https://github.com/Rubberduckycooly/Sonic-CD-11-Decompilation'
feed: 'https://github.com/Rubberduckycooly/Sonic-CD-11-Decompilation/releases.atom'
development: active
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- Custom
info: based on decompilation of RSDK (Retro-Engine) version 3 or 4
updated: '2021-07-22'
video:
youtube: tTErcMRznkk
- name: Sopwith 3
langs:
- C++
frameworks:
- Allegro
licenses:
- GPL2
originals:
- Sopwith
status: playable
repo: https://sourceforge.net/projects/sopwith3/
development: halted
type: remake
updated: 2022-06-23
url: https://www.wingkong.net/sopwith2b/sopwith3.html
images:
- https://www.wingkong.net/sopwith2b/images/sop3_title.gif
- https://www.wingkong.net/sopwith2b/images/sop3_gameplay1.gif
- https://www.wingkong.net/sopwith2b/images/sop3_gameplay2.gif
- name: Sourcehold
type: remake
originals:
- Stronghold
repo: https://github.com/sourcehold/Sourcehold
development: active
status: semi-playable
langs:
- C++
frameworks:
- SDL2
licenses:
- MIT
content: commercial
updated: 2020-08-31
images:
- https://camo.githubusercontent.com/f5171c837baca0c86dab2b7f55c68269850f42c1/68747470733a2f2f692e696d6775722e636f6d2f726b6b336b41742e706e67
- name: Space Harrier Clone
type: clone
originals:
- Space Harrier
repo: https://github.com/BrunoAOR/Space-Harrier-Clone
url: https://brunoaor.github.io/Space-Harrier-Clone/
development: halted
status: playable
langs:
- C
- C++
frameworks:
- SDL2
licenses:
- MIT
content: free
updated: 2019-05-08
video:
youtube: IEfNoqLfxcs
- name: Space Nerds In Space
langs:
- C
frameworks:
- SDL2
- OpenGL
licenses:
- GPL2
content: open
development: active
originals:
- 'Artemis: Spaceship Bridge Simulator'
status: playable
repo: https://github.com/smcameron/space-nerds-in-space
type: similar
updated: 2021-10-05
url: https://smcameron.github.io/space-nerds-in-space/
video:
youtube: 3fFl0VH-4zA
- name: Space Station 14
type: remake
originals:
- Space Station 13
repo: 'https://github.com/space-wizards/space-station-14'
url: 'https://spacestation14.io/'
feed: 'https://spacestation14.io/index.xml'
development: very active
status: playable
multiplayer:
- Online
langs:
- 'C#'
licenses:
- MIT
- CC-BY-SA
- CC-BY-NC-SA
content: swappable
info: A continuation of the goon remake of the cult classic
updated: '2022-4-22'
images:
- 'https://spacestation14.io/images/post/pr_30/rollerbed.webp'
- 'https://spacestation14.io/images/post/pr_30/accents.webp'
- 'https://spacestation14.io/images/post/pr_29/monkey_murder.webp'
- name: SpaceTwitch
langs:
- C#
licenses:
- As-is
development: halted
originals:
- Tempest
status: semi-playable
repo: https://github.com/KirbyAu2/SpaceTwitch
type: remake
updated: 2022-02-04
- name: SpaceCadetPinball
originals:
- Full Tilt! Pinball
type: remake
repo: 'https://github.com/k4zmu2a/SpaceCadetPinball'
url: 'https://alula.github.io/SpaceCadetPinball/'
feed: 'https://github.com/k4zmu2a/SpaceCadetPinball/releases.atom'
development: very active
status: playable
content: free
langs:
- C++
frameworks:
- SDL2
licenses:
- MIT
info: Reverse engineering of 3D Pinball for Windows – Space Cadet
updated: '2021-10-16'
video:
youtube: sAUu-Dl01OE
- name: Space-rangers
frameworks:
- XNA
langs:
- C#