-
Notifications
You must be signed in to change notification settings - Fork 317
/
d.yaml
1730 lines (1644 loc) · 40.5 KB
/
d.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: D2X-XL
langs:
- C++
frameworks:
- OpenGL
licenses:
- GPL2
development: halted
originals:
- Descent
- Descent II
repo: https://sourceforge.net/projects/d2x-xl/
status: playable
type: remake
updated: 2021-01-22
url: http://www.descent2.de/
images:
- https://a.fsdn.com/con/app/proj/d2x-xl/screenshots/148449.jpg/245/183/1.5
- https://a.fsdn.com/con/app/proj/d2x-xl/screenshots/148453.jpg/245/183/1.5
- https://a.fsdn.com/con/app/proj/d2x-xl/screenshots/148451.jpg/245/183/1.5
video:
youtube: AJwOTmmbze4
- name: D3es
originals:
- 'Doom 3'
type: remake
repo: 'https://github.com/emileb/d3es-multithread'
development: halted
status: playable
content: commercial
langs:
- C++
licenses:
- GPL3
info: A Doom 3 source port forked from Dhewm3 and D3Wasm that uses a GLES2 renderer. A PS Vita port is in the works.
updated: 2022-03-30
video:
youtube: TrUooxLiK44
- name: Daggerfall Unity
langs:
- C#
frameworks:
- Unity
licenses:
- MIT
development: active
originals:
- 'The Elder Scrolls II: Daggerfall'
repo: https://github.com/Interkarma/daggerfall-unity
status: playable
type: remake
updated: 2023-01-01
url: https://www.dfworkshop.net/
images:
- https://user-images.githubusercontent.com/10426244/198905388-6e715073-3ee2-42fb-b05e-08275343691c.png
- https://user-images.githubusercontent.com/10426244/198906676-e3d139f9-e46a-49f8-aa09-afe4d5e51a7e.png
- https://user-images.githubusercontent.com/10426244/198906775-2a4b6bca-a700-4429-931c-8bb46a0576ca.png
video:
youtube: xPHnyKXazxc
- name: Daggerfall.NET
langs:
- C#
frameworks:
- MonoGame
licenses:
- As-is
development: halted
originals:
- 'The Elder Scrolls II: Daggerfall'
status: unplayable
repo: https://github.com/JohnathanGreen/Daggerfall.NET
type: remake
updated: 2022-07-02
- name: Danger from the Deep
images:
- https://a.fsdn.com/con/app/proj/dangerdeep/screenshots/217888.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/dangerdeep/screenshots/217884.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/dangerdeep/screenshots/217886.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/dangerdeep/screenshots/218174.jpg/max/max/1
langs:
- C++
frameworks:
- SDL
licenses:
- CC-BY-NC-ND
- GPL2
development: sporadic
originals:
- Silent Hunter 4
status: playable
repo: https://sourceforge.net/projects/dangerdeep/
type: remake
updated: 2021-04-27
url: http://dangerdeep.sourceforge.net/
video:
youtube: LU1aM_SmoSM
- name: 'Dangerous Dave 2: Modification Edition'
originals:
- Dangerous Dave in the Haunted Mansion
type: remake
repo: 'https://github.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition'
feed: >-
https://github.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/releases.atom
development: active
status: playable
content: commercial
langs:
- C++
frameworks:
- SFML
- TGUI
licenses:
- Custom
info: >-
Now you can play (in addition to standard levels) in additional levels! For it
choose levelpack in launcher!
updated: '2022-08-02'
images:
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/1.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/2.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/3.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/5.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/6.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/7.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/8.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/9.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/10.png
- >-
https://raw.githubusercontent.com/Harchvertelol/Dangerous-Dave-2-Modification-Edition/master/Screenshots/4.jpg
- name: The Dark Mod
images:
- https://www.thedarkmod.com/wp-content/uploads/2023/02/1484820459_seeking0_31.jpg
- https://www.thedarkmod.com/wp-content/uploads/2023/02/hazard_blur211.jpg
- https://www.thedarkmod.com/wp-content/uploads/2023/02/Assets211.jpg
- https://www.thedarkmod.com/wp-content/uploads/2022/03/iris.jpg
langs:
- C++
licenses:
- GPL3
content: commercial
development: very active
originals:
- Thief
repo: https://github.com/stgatilov/darkmod_src
status: playable
type: clone
updated: 2024-01-28
url: https://www.thedarkmod.com/main/
video:
youtube: brJqHnXmpgE
- name: Dark Oberon
images:
- https://dark-oberon.sourceforge.net/screenshots/2005-08-16_1_1024x768.jpg
- https://dark-oberon.sourceforge.net/screenshots/2005-08-16_4_1024x768.jpg
- https://dark-oberon.sourceforge.net/screenshots/2005-08-16_7_1024x768.jpg
originals:
- Warcraft II
status: playable
licenses:
- GPL2
content: open
langs:
- C++
frameworks:
- OpenGL
development: halted
repo: https://sourceforge.net/projects/dark-oberon/
type: clone
updated: 2022-01-29
url: http://dark-oberon.sourceforge.net/
video:
youtube: pgFWAeM4Rm8
- name: Darkflame Universe
originals:
- Lego Universe
type: remake
repo: https://github.com/DarkflameUniverse/DarkflameServer
url: 'https://darkflameuniverse.org/'
feed: https://github.com/DarkflameUniverse/DarkflameServer/releases.atom
development: very active
status: playable
multiplayer:
- Local
- Online
- LAN
content: commercial
langs:
- C++
licenses:
- AGPL3
info: This project is a server emulating an MMO developed by NetDevil and released in 2010.
updated: 2024-02-19
images:
- 'https://pbs.twimg.com/media/E5jL9BvWQAQOeYQ?format=jpg&name=900x900'
- 'https://pbs.twimg.com/media/E17cXShWYAMLJI9?format=jpg&name=large'
video:
youtube: ZhzMy-o0ByM
- name: DarkFO
development: halted
langs:
- JavaScript
- Python
licenses:
- Apache
content: commercial
originals:
- Fallout 2
status: semi-playable
repo: https://github.com/darkf/darkfo
type: remake
updated: 2022-04-18
- name: DarkPlaces
images:
- https://icculus.org/twilight/darkplaces/pics/rygelpack_pretty1.jpg
- https://icculus.org/twilight/darkplaces/pics/rygelpack_pretty6.jpg
- https://icculus.org/twilight/darkplaces/pics/rygelpack_pretty10.jpg
langs:
- C
frameworks:
- OpenGL
- SDL2
licenses:
- GPL2
development: very active
originals:
- Quake
status: playable
repo: https://github.com/DarkPlacesEngine/darkplaces
type: remake
updated: 2024-01-29
url: https://icculus.org/twilight/darkplaces/
feed: https://github.com/DarkPlacesEngine/darkplaces/releases.atom
- name: datastorm
langs:
- C
licenses:
- Apache
development: halted
originals:
- Turmoil
status: playable
repo: https://github.com/haroldo-ok/datastorm
type: remake
updated: 2022-07-02
- name: Dave Gnukem
development: very active
frameworks:
- SDL2
images:
- https://scorpioncity.com/dave_gnukem/gallery/Dave%20Gnukem%200.90%20%2813%20Jan%202018%29.png
- https://djoffe.com/gnukem/files/Dave_Gnukem_0.81.png
langs:
- C++
licenses:
- GPL2
content: open
originals:
- Duke Nukem
repo: https://github.com/davidjoffe/dave_gnukem
status: playable
type: similar
updated: 2024-01-30
url: https://djoffe.com/gnukem/
video:
youtube: Hi7WYnOA_fo
- name: Deathchase 3D
licenses:
- GPL2
langs:
- C
frameworks:
- SDL
originals:
- Deathchase
status: playable
repo: https://github.com/BachToTheFuture/DeathChase3D
development: halted
type: remake
updated: 2022-06-12
url: https://web.archive.org/web/20070711231311/http://www.robsons.org.uk/archive/www.autismuk.freeserve.co.uk/index.htm
- name: Deathlord Relorded
images:
- https://img.itch.zone/aW1hZ2UvMTQxNTUxMi84MjQ1MDM1LnBuZw==/original/TciGJK.png
licenses:
- AGPL3
langs:
- C++
frameworks:
- DirectX
originals:
- Deathlord
status: playable
repo: https://github.com/hasseily/Deathlord-Relorded
development: complete
type: remake
updated: 2023-02-17
url: https://rikkles.itch.io/deathlord-relorded
info: original code runs under a heavily patched AppleWin emulation. 1920x1080 Win10+ (DX12) required.
- name: Defendguin
images:
- https://libregamewiki.org/images/2/24/Defendguin.gif
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
development: complete
originals:
- Defender
status: playable
type: remake
updated: 2022-02-10
url: http://www.newbreedsoftware.com/defendguin/
- name: Deflektor X4
images:
- https://retrospec.sgn.net/config/screenshots/deflektorx4.f.DeflektorX40.gif
- https://retrospec.sgn.net/config/screenshots/deflektorx4.f.DeflektorX42.gif
- https://retrospec.sgn.net/config/screenshots/deflektorx4.f.DeflektorX41.gif
langs:
- C
frameworks:
- Allegro
licenses:
- As-is
development: complete
originals:
- Deflektor
status: playable
type: remake
updated: 2021-09-04
url: http://retrospec.sgn.net/users/ignacio/dfli.htm
video:
youtube: VN0qi5o3tl0
- name: DelverEngine
images:
- https://camo.githubusercontent.com/66a1ba4602dd94e3ebca0d7ed7ef0e5d8c926c83/68747470733a2f2f692e696d6775722e636f6d2f747165654a71482e706e67
langs:
- Java
frameworks:
- libGDX
licenses:
- Zlib
content: commercial
development: complete
originals:
- Delver
status: playable
repo: https://github.com/Interrupt/delverengine
type: official
updated: 2022-07-02
url: http://www.delvergame.com
- name: Der Clou!
langs:
- C
frameworks:
- SDL2
licenses:
- Custom
content: commercial
development: halted
originals:
- The Clue!
status: playable
repo: https://github.com/vcosta/derclou
type: remake
updated: 2022-07-02
video:
youtube: UlQovLvleKg
images:
- https://repo.openpandora.org/files/pnd/derclou-sdl/preview/1.png
- https://repo.openpandora.org/files/pnd/derclou-sdl/preview/2.png
- https://repo.openpandora.org/files/pnd/derclou-sdl/preview/3.png
- https://repo.openpandora.org/files/pnd/derclou-sdl/preview/4.png
- https://repo.openpandora.org/files/pnd/derclou-sdl/preview/5.png
- name: Descent 3
originals:
- Descent 3
type: official
repo: https://github.com/DescentDevelopers/Descent3
development: very active
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
added: 2024-04-20
updated: 2024-09-26
video:
youtube: oasEAoPHk7I
- name: 'Descent 3: Piccu Engine'
originals:
- Descent 3
type: remake
repo: 'https://github.com/InsanityBringer/PiccuEngine'
feed: 'https://github.com/InsanityBringer/PiccuEngine/releases.atom'
development: active
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL
licenses:
- GPL3
info: a version of the game Descent 3 focused on quality-of-life improvements.
added: '2024-10-22'
updated: '2024-10-22'
video:
youtube: CaYHlpVBHd0
- name: DesktopAdventures
development: halted
langs:
- C
frameworks:
- SDL2
licenses:
- LGPL2
content: commercial
originals:
- Indiana Jones and his Desktop Adventures
- 'Star Wars: Yoda Stories'
repo: https://github.com/shinyquagsire23/DesktopAdventures
status: semi-playable
type: remake
updated: 2024-01-31
video:
youtube: zD0fdu-dhTw
- name: Desktop Adventures Engine for ScummVM
development: halted
langs:
- C++
licenses:
- GPL2
content: commercial
originals:
- Indiana Jones and his Desktop Adventures
- 'Star Wars: Yoda Stories'
status: semi-playable
type: remake
updated: 2019-10-02
repo: https://github.com/digitall/scummvm-deskadv
- name: Dethrace
originals:
- Carmageddon
type: remake
repo: 'https://github.com/dethrace-labs/dethrace'
url: 'https://twitter.com/dethrace_labs'
development: active
status: semi-playable
content: commercial
langs:
- C
frameworks:
- SDL2
licenses:
- GPL3
info: Reverse engineering the 1997 game "Carmageddon"
updated: '2022-08-03'
images:
- >-
https://user-images.githubusercontent.com/78985374/166819615-22a5446c-0ed1-4cab-a833-a0fcdcac8da8.png
- name: Deuteros X
langs:
- C#
frameworks:
- SDL.NET
licenses:
- GPL2
development: halted
originals:
- Deuteros
status: unplayable
repo: http://sourceforge.net/projects/deuterosx/
type: remake
updated: 2022-07-02
- name: Devilution
images:
- https://camo.githubusercontent.com/9426dfe5fc03654a8f1d3c024019cd7c5fb468b6/68747470733a2f2f7333332e706f7374696d672e63632f36786e6e68686c6d6e2f6469616275696d6f6e2e706e67
langs:
- C++
licenses:
- Custom
content: commercial
development: active
originals:
- Diablo
repo: https://github.com/diasurgical/devilution
status: playable
type: remake
info: Engine recreation (same bugs as original)
updated: 2021-09-03
- name: DevilutionX
type: remake
originals:
- Diablo
repo: https://github.com/diasurgical/devilutionX
development: active
status: playable
langs:
- C++
frameworks:
- SDL
- SDL2
licenses:
- Custom
content: commercial
info: Improved engine recreation with improvements, bugfixes, and some optional quality of life features.
updated: 2021-09-03
images:
- https://user-images.githubusercontent.com/204594/113578478-26912400-9623-11eb-9ff6-9bd9717462b6.png
- name: DGEngine
images:
- https://user-images.githubusercontent.com/20025614/30250613-4033a546-9649-11e7-86d7-97a718d0f119.gif
- https://user-images.githubusercontent.com/20025614/37241587-65586a1c-2453-11e8-87b8-1956eeb09acd.png
- https://user-images.githubusercontent.com/20025614/62253488-e8734400-b3ed-11e9-9265-d37b89eea241.png
- https://cloud.githubusercontent.com/assets/20025614/16467025/4bd77ef0-3e3d-11e6-872a-38ca8eb2c9f8.gif
- https://user-images.githubusercontent.com/20025614/57727911-917d8e80-768a-11e9-9d39-6b7a7370716b.png
- https://user-images.githubusercontent.com/20025614/57727918-92162500-768a-11e9-80c6-59e6a057fefb.png
langs:
- C++
frameworks:
- SFML
licenses:
- GPL3
- Zlib
content: swappable
development: sporadic
originals:
- Diablo
- Diablo II
status: semi-playable
repo: https://github.com/dgcor/DGEngine
type: remake
updated: 2024-01-02
url: https://github.com/dgcor/DGEngine/wiki
info: Also supports Flare
- name: dhewm3
langs:
- C++
frameworks:
- SDL
- SDL2
licenses:
- GPL3
content: commercial
development: active
originals:
- Doom 3
status: playable
repo: https://github.com/dhewm/dhewm3
type: remake
updated: 2022-07-02
url: https://dhewm3.org/
images:
- https://dhewm3.org/dhewm3-linux.jpg
- https://dhewm3.org/dhewm3-win.jpg
- https://dhewm3.org/dhewm3-osx.jpg
- https://dhewm3.org/dhewm3-aros.jpg
- https://dhewm3.org/dhewm3-switch-linux.jpg
- https://dhewm3.org/dhewm3-1.jpg
- https://dhewm3.org/dhewm3-d3xp1.jpg
- name: Diablerie
originals:
- Diablo II
type: remake
repo: 'https://github.com/mofr/Diablerie'
development: halted
status: semi-playable
content: commercial
langs:
- 'C#'
frameworks:
- Unity
licenses:
- MIT
info: Needs original Diablo II + Lord of Destruction game data.
updated: 2024-02-02
images:
- https://raw.github.com/mofr/Diablerie/master/Screenshots/rogue_camp.png
- name: Diabolika
originals:
- Diabolika 2
type: clone
repo: https://github.com/dgcor/Diabolika
development: complete
status: playable
content: free
langs:
- C++
frameworks:
- SFML
licenses:
- Zlib
updated: 2021-06-01
images:
- >-
https://user-images.githubusercontent.com/20025614/103456786-56155500-4cf1-11eb-8911-954eb57fc886.png
- name: Digbuild
langs:
- C++
frameworks:
- SDL
- OpenGL
licenses:
- GPL2
development: halted
originals:
- Minecraft
status: semi-playable
repo: https://github.com/emezeske/digbuild
type: similar
updated: 2022-07-02
url: http://blog.mezeske.com/?p=507
- name: Digger
langs:
- JavaScript
licenses:
- As-is
content: open
development: halted
originals:
- Boulder Dash
status: playable
repo: https://github.com/lutzroeder/digger
type: remake
updated: 2024-02-03
url: https://lutzroeder.github.io/digger/
info: no license, but contains assets from xdigger (GPL3)
images:
- https://github.com/lutzroeder/digger/raw/main/.github/screenshot.png
- name: Digger Remastered
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Digger
repo: https://digger.org/download.html
status: playable
type: remake
url: https://digger.org/
updated: 2020-08-25
images:
- https://www.retrogames.cz/games/973/DOS_03.gif
- name: Digimon World Project Ark
frameworks:
- Unity
langs:
- C#
licenses:
- As-is
development: halted
originals:
- Digimon World
status: unplayable
repo: https://github.com/dwProjectark/Digimon-World-Project-Ark
type: remake
updated: 2022-07-02
- name: Dink Smallwood HD
originals:
- Dink Smallwood
type: remake
repo: 'https://github.com/SethRobinson/RTDink'
url: 'https://www.rtsoft.com/pages/dink.php'
development: sporadic
status: playable
content: free
langs:
- C++
frameworks:
- OpenGL
licenses:
- Custom
info: >-
Dink Smallwood HD is the newly remixed version of the irreverent old-school
RPG adventure cult classic brought to you by the original creators.
updated: 2024-02-04
images:
- 'https://www.rtsoft.com/dink/hd/ipad_dragons.jpg'
- 'https://www.rtsoft.com/dink/hd/ipad_snow.jpg'
- 'https://www.rtsoft.com/dink/hd/ipad_inventory.jpg'
- 'https://www.rtsoft.com/dink/hd/ipad_darklands.jpg'
- 'https://www.rtsoft.com/dink/hd/iphone4_pigfarmer.jpg'
- 'https://www.rtsoft.com/dink/hd/iphone4_map.jpg'
- 'https://www.rtsoft.com/dink/hd/iphone4_store.jpg'
- 'https://www.rtsoft.com/dink/hd/iphone4_big_building.jpg'
video:
youtube: aDHQ17Gf34c
- name: Dino Run DX
originals:
- Dino Run DX
type: official
repo: 'https://github.com/pixeljam/DinoRunDX'
url: 'https://store.steampowered.com/news/app/248330/view/3639504956058288978'
development: complete
status: playable
multiplayer:
- Competitive
- Online
content: open
langs:
- ActionScript
frameworks:
- Adobe AIR
licenses:
- GPL3
updated: '2023-04-08'
images:
- >-
https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/clans//10209198/1fabb2e735129fa613377fc8e86e10c63b99d044.jpg
- name: div-columns
frameworks:
- DIV Games Studio
licenses:
- MIT
development: complete
originals:
- Columns
status: playable
repo: https://github.com/MikeDX/div-columns
type: remake
updated: 2022-07-02
url: http://js.mikedx.co.uk/columns.html
- name: div-pacman2600
frameworks:
- DIV Games Studio
licenses:
- MIT
development: complete
originals:
- Pac-Man
status: playable
repo: https://github.com/MikeDX/div-pacman2600
type: remake
updated: 2022-07-02
url: http://js.mikedx.co.uk/pacman2600.html
info: clone of Atari Pac-Man
- name: div-pitfall
frameworks:
- DIV Games Studio
licenses:
- MIT
development: complete
originals:
- Pitfall!
status: playable
repo: https://github.com/MikeDX/div-pitfall
type: remake
updated: 2022-07-02
url: http://js.mikedx.co.uk/pitfall.html
- name: div-spaceinvaders2600
frameworks:
- DIV Games Studio
licenses:
- MIT
development: complete
originals:
- Space Invaders
status: playable
repo: https://github.com/MikeDX/div-spaceinvaders2600
type: remake
updated: 2022-07-02
url: http://js.mikedx.co.uk/invadersa2600.html
- name: Divercity
originals:
- SimCity
type: clone
repo: 'https://github.com/Team--Rocket/divercity'
url: 'https://team--rocket.github.io/divercity/'
development: halted
status: playable
content: open
langs:
- Java
licenses:
- GPL3
updated: '2020-07-24'
images:
- https://raw.githubusercontent.com/Team--Rocket/divercity/master/graphics/splash_1.png
- https://raw.githubusercontent.com/Team--Rocket/divercity/master/betterScreenshot.png
- name: Dizgruntled
type: remake
originals:
- Gruntz
repo: https://bitbucket.org/pointcliki/dizgruntled/
development: halted
status: playable
langs:
- Java
licenses:
- As-is
content: commercial
updated: 2019-12-22
- name: dodger-remake
langs:
- C++
frameworks:
- SFML
licenses:
- As-is
development: halted
originals:
- Dodger
status: unplayable
repo: https://github.com/funchal/dodger-remake
type: remake
updated: 2022-07-02
- name: Domino-Chain
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
development: active
originals:
- Pushover
repo: https://gitlab.com/domino-chain/domino-chain.gitlab.io
status: playable
type: remake
updated: 2024-02-20
url: https://domino-chain.gitlab.io/
images:
- https://domino-chain.gitlab.io/assets/domino-chain-header.jpg
- name: DonkeyInTrouble
frameworks:
- "L\xD6VE"
langs:
- Lua
licenses:
- As-is
development: halted
originals:
- Kaboom!
status: semi-playable
repo: https://github.com/Zap123/DonkeyInTrouble
type: remake
updated: 2022-07-02
images:
- https://raw.githubusercontent.com/Zap123/DonkeyInTrouble/master/demo.png
- name: donut
type: remake
originals:
- 'The Simpsons: Hit & Run'
repo: https://github.com/plowteam/donut
development: halted
status: unplayable
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
content: commercial
updated: 2024-02-05
images:
- https://files.facepunch.com/Layla/2019/August/11/2019-08-09_22-12-28.png
- https://files.facepunch.com/Layla/2019/August/11/2019-08-09_22-11-26.png
- name: Doom
langs:
- C
licenses:
- Custom
development: complete
originals:
- Doom
repo: https://github.com/id-Software/DOOM
status: playable
type: official
updated: 2022-05-07
url: https://bethesda.net/en/store/product/DO1GNGPCBG01
images:
- https://images.ctfassets.net/rporu91m20dc/5z6KhDv8HgZJ2ZYDygrrLY/f55fc2da6477454637f9865022844fde/doom-doom_classic-doom_1993_1-big_effing_guns-png?q=70&fm=webp
- https://images.ctfassets.net/rporu91m20dc/1GDSXoXoWlH68QLWY1kmr1/464a151c291511476cb93b04464ad322/doom-doom_classic-doom_1993_2-demon_slaying-png?q=70&fm=webp
- https://images.ctfassets.net/rporu91m20dc/6My9dmRclfWQvx8PI9vL42/96b05ecfd861b98ebe8ed9a7ae581d5e/doom-doom_classic-doom_1993_5-escape_mars-png?q=70&fm=webp
- https://images.ctfassets.net/rporu91m20dc/6QaMnGFwH9nUG0CzeiwSBX/b9175102cc5304eb83bf136de9ac84a4/doom-doom_classic-doom_1993_3-fierce_combat-png?q=70&fm=webp
- https://images.ctfassets.net/rporu91m20dc/6GnydS4hyMGHkl8X4kfzHn/c66f37c406328205837639d65f7246de/doom-doom_classic-doom_1993_6_non_mobile_only-png?q=70&fm=webp
video:
youtube: yr-lQZzevwA
- name: Doom Classic for iOS
info: iOS
langs:
- C
licenses:
- GPL2
content: commercial
development: complete
originals:
- Doom
status: playable
repo: https://github.com/id-Software/DOOM-IOS2
type: official
updated: 2022-05-19
- name: Doom Legacy
images:
- https://doomlegacy.sourceforge.net/images/legacy/multibf1.gif
- https://doomlegacy.sourceforge.net/images/legacy/3dfx.gif
langs:
- C++
licenses:
- GPL2
development: active
originals:
- Doom
- Heretic
- Hexen
repo: https://sourceforge.net/projects/doomlegacy/
status: playable
type: remake
updated: 2014-08-20
url: http://doomlegacy.sourceforge.net/
- name: DOOM Retro
type: remake
originals:
- Doom
repo: https://github.com/bradharding/doomretro
feed: https://github.com/bradharding/doomretro/releases.atom
url: https://www.doomretro.com/
development: very active
status: playable
langs:
- C
frameworks:
- SDL2
licenses:
- GPL3
content: commercial
updated: 2024-02-06
images:
- https://raw.githubusercontent.com/bradharding/www.doomretro.com/master/wiki/screenshot1.png
- https://raw.githubusercontent.com/bradharding/www.doomretro.com/master/wiki/screenshot2.png
- https://raw.githubusercontent.com/bradharding/www.doomretro.com/master/wiki/screenshot3.png
- https://raw.githubusercontent.com/bradharding/www.doomretro.com/master/wiki/screenshot4.png
- name: Doom64EX