-
Notifications
You must be signed in to change notification settings - Fork 317
/
p.yaml
1278 lines (1213 loc) · 27.6 KB
/
p.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: Pac Go
originals:
- Pac-Man
type: clone
repo: https://github.com/danicat/pacgo
development: halted
status: playable
content: open
langs:
- Go
licenses:
- MIT
updated: 2024-03-06
images:
- https://raw.githubusercontent.com/danicat/pacgo/master/screenshot.jpg
- name: pacman
langs:
- JavaScript
licenses:
- WTFPL
development: halted
originals:
- Pac-Man
status: playable
repo: https://github.com/daleharvey/pacman
type: remake
updated: 2015-05-19
- name: pacman (harto)
langs:
- JavaScript
licenses:
- As-is
content: free
development: complete
originals:
- Pac-Man
repo: https://github.com/harto/pacman
type: remake
added: 2015-05-19
updated: 2024-09-13
status: playable
url: https://harto.github.io/pacman/
- name: pacman-canvas
images:
- https://pacman.platzh1rsch.ch/img/instructions/instructions_scatter.PNG
- https://pacman.platzh1rsch.ch/img/instructions/instructions_chase.PNG
- https://pacman.platzh1rsch.ch/img/instructions/instructions_powerpill.PNG
langs:
- JavaScript
licenses:
- CC0
content: free
development: halted
originals:
- Pac-Man
status: playable
repo: https://github.com/platzhersh/pacman-canvas
type: remake
updated: 2024-03-07
url: https://pacman.platzh1rsch.ch/
- name: Pacman Canvas Next
originals:
- Pac-Man
type: remake
repo: 'https://github.com/platzhersh/pacman-canvas-next'
development: sporadic
status: unplayable
content: free
langs:
- TypeScript
licenses:
- MIT
info: continuation of pacman-canvas-next
updated: '2024-03-10'
- name: pacman (Rust)
originals:
- Pac-Man
type: clone
repo: 'https://github.com/denix666/pacman'
development: complete
status: playable
langs:
- Rust
licenses:
- MIT
content: free
added: 2024-09-13
updated: 2024-09-13
images:
- https://github.com/denix666/pacman/blob/main/screenshots/screenshot.png
- name: Pacman 吃豆游戏
originals:
- Pac-Man
type: remake
repo: 'https://github.com/mumuy/pacman'
url: 'https://passer-by.com/pacman/'
development: sporadic
status: playable
content: open
langs:
- JavaScript
licenses:
- MIT
info: Pacman based on HTML5
updated: 2024-03-08
images:
- 'https://inews.gtimg.com/newsapp_bt/0/13183252358/1000'
- name: Panel Attack
frameworks:
- LÖVE
langs:
- Lua
licenses:
- Zlib
multiplayer:
- Local
- Online
- Split-screen
development: active
originals:
- Tetris Attack
repo: https://github.com/panel-attack/panel-attack
url: http://panelattack.com/
status: playable
type: remake
updated: 2023-11-16
video:
youtube: lm5zW5yPsr0
- name: Pang Zero
images:
- https://apocalypse.rulez.org/kozosfiles/upipang11/version_1.0.jpg
- https://a.fsdn.com/con/app/proj/pangzero/screenshots/102928.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/pangzero/screenshots/101037.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/pangzero/screenshots/101035.jpg/max/max/1
langs:
- Perl
frameworks:
- SDL
licenses:
- GPL2
development: halted
originals:
- Buster Bros
status: playable
multiplayer:
- Local
repo: https://sourceforge.net/projects/pangzero/
type: remake
updated: 2023-01-20
url: https://apocalypse.rulez.org/kozos/UpiPangBlog
video:
youtube: oWfEp_d3EeU
- name: Paper Isaac
type: clone
originals:
- The Binding of Isaac
repo: https://github.com/fasterthanlime/isaac-paper
url: https://amos.me/games/paper-isaac/
development: halted
status: playable
langs:
- ooc
licenses:
- MIT
content: open
updated: 2019-05-23
images:
- https://amos.me/img/paperisaac-shot.png
video:
youtube: m2Rw_1OFSho
- name: Paratrooper
originals:
- Paratrooper
type: clone
status: playable
repo: https://github.com/denix666/paratrooper
feed: https://github.com/denix666/paratrooper/releases.atom
development: sporadic
langs:
- Rust
frameworks:
- macroquad
licenses:
- MIT
content: open
updated: 2024-02-25
images:
- https://github.com/denix666/paratrooper/blob/main/screenshots/clone.png?raw=true
- name: PARPG
images:
- https://a.fsdn.com/con/app/proj/parpg/screenshots/286275.jpg
langs:
- Python
- C++
licenses:
- GPL3
- CC-BY-SA
development: halted
originals:
- Fallout 2
status: unplayable
repo: https://sourceforge.net/projects/parpg/
type: remake
updated: 2023-01-20
video:
youtube: WaVqYqA5Vv0
- name: Pathological
images:
- https://taufanlubis.files.wordpress.com/2008/03/linux-game-pathological.png
langs:
- Python
frameworks:
- pygame
licenses:
- GPL2
development: halted
originals:
- Log!cal
status: playable
repo: https://sourceforge.net/projects/pathological/
type: remake
updated: 2022-07-28
url: https://pathological.sourceforge.net/
- name: PCExhumed
type: remake
originals:
- Powerslave
repo: https://github.com/nukeykt/NBlood
url: https://pcex.retrohost.net/
development: very active
status: playable
langs:
- C++
frameworks:
- SDL
- SDL2
- OpenGL
licenses:
- Custom
content: commercial
info: 'PC version, based on EDuke32'
updated: 2020-01-10
video:
youtube: g6HaMv6FYvE
- name: Pendomotion
frameworks:
- pygame
langs:
- Python
licenses:
- As-is
development: halted
originals:
- Locomotion (Amiga 1992)
status: unplayable
repo: https://github.com/Pafycio/Pendomotion
type: remake
updated: 2015-07-14
- name: 'Penumbra: Overture'
originals:
- 'Penumbra: Overture'
type: official
repo: 'https://github.com/FrictionalGames/PenumbraOverture'
url: 'http://www.penumbragame.com'
development: complete
status: playable
content: commercial
langs:
- C++
licenses:
- GPL3
updated: '2023-09-20'
- name: Performous
langs:
- C++
licenses:
- GPL2
development: active
originals:
- Dance Dance Revolution
- Guitar Hero
- SingStar
repo: https://github.com/performous/performous
status: playable
type: clone
updated: 2014-09-19
url: https://performous.org/
video:
youtube: soYIbsVmcyU
- name: Perimeter
originals:
- Perimeter
type: official
repo: 'https://github.com/KD-lab-Open-Source/Perimeter'
url: 'https://store.steampowered.com/app/289440/Perimeter/'
feed: 'https://github.com/KD-lab-Open-Source/Perimeter/releases.atom'
development: very active
multiplayer:
- Competitive
- Online
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
added: '2024-06-01'
updated: '2024-06-01'
video:
youtube: '-lrTdw7DSKc'
- name: Phantasy
langs:
- Java
licenses:
- As-is
development: halted
info: DEPRECATED Use JLud2D instead
originals:
- Phantasy Star
status: unplayable
repo: https://github.com/rafael-esper/Phantasy
type: remake
updated: 2015-05-28
- name: Phavon
images:
- https://www.happypenguin.altervista.org/screenshots/snap001.jpg
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
content: commercial
development: halted
originals:
- Xenon 2 Megablast
status: semi-playable
repo: https://sourceforge.net/projects/phavon/
type: remake
updated: 2022-07-18
url: https://phavon.sourceforge.net/
- name: Phoenix
langs:
- Java
licenses:
- As-is
content: commercial
development: halted
originals:
- Emperor of the Fading Suns
status: semi-playable
repo: https://github.com/joulupunikki/Phoenix
url: https://joulupunikki.github.io/Phoenix/
type: remake
info: an exe replacement using java
updated: 2022-11-11
video:
youtube: -5CJ0Of43C8
- name: Pingus
development: sporadic
frameworks:
- SDL2
images:
- https://pingus.seul.org/images/screen_0.7.0-3.jpg
- https://pingus.seul.org/images/screen_0.7.0-4.jpg
langs:
- C++
licenses:
- GPL3
content: open
originals:
- Lemmings
repo: https://github.com/Pingus/pingus
status: playable
type: clone
updated: 2023-10-08
url: https://pingus.seul.org
- name: Pink Pony
type: clone
originals:
- Tron
repo: https://github.com/ginkgo/pink-pony
url: https://ginkgo.github.io/pink-pony/
development: halted
status: playable
multiplayer:
- Split-screen
langs:
- C++
licenses:
- GPL3
content: open
updated: 2019-06-11
images:
- https://ginkgo.github.io/pink-pony/pinkpony1.jpg
- https://ginkgo.github.io/pink-pony/pinkpony2.jpg
video:
youtube: g3wy1Nh8-KA
- name: Pioneer
images:
- https://pioneerspacesim.net//carousel/new-hope.jpg
- https://pioneerspacesim.net//carousel/mars-high.jpg
- https://pioneerspacesim.net//carousel/in-flight.jpg
- https://pioneerspacesim.net//carousel/gas-giant.jpg
langs:
- C++
- C
- Lua
licenses:
- GPL3
development: active
originals:
- Elite II
repo: https://github.com/pioneerspacesim/pioneer
status: playable
type: clone
updated: 2020-08-25
url: https://pioneerspacesim.net/
video:
vimeo: 78452479
- name: Pipemania
frameworks:
- LÖVE
langs:
- Lua
licenses:
- As-is
development: halted
originals:
- Pipe Mania
status: unplayable
repo: https://github.com/zbiq13/Pipemania
type: remake
updated: 2015-06-01
- name: Pipe Puzzle
originals:
- Pipe Mania
type: clone
repo: 'https://github.com/tassaron/pipe-puzzle'
url: 'https://rainey.tech/game/pipe-puzzle'
development: complete
status: playable
content: open
langs:
- JavaScript
frameworks:
- PixiJS
licenses:
- MIT
updated: '2023-07-14'
images:
- 'https://github.com/tassaron/pipe-puzzle'
- name: Pizza Business
images:
- https://pizza-business.sourceforge.net/gtk1.png
- https://pizza-business.sourceforge.net/screenshot1.png
- https://pizza-business.sourceforge.net/screenshot5.png
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- Pizza Tycoon
status: playable
repo: https://sourceforge.net/projects/pizza-business/
type: clone
updated: 2021-11-22
url: https://pizza-business.sourceforge.net/
- name: Planet Lander
originals:
- Lunar Lander
type: clone
repo: https://github.com/PeiP-2018-Work-Nantes-DUT-INFO/Planet-Lander-Lunar-Lander-with-Pygame
development: halted
status: playable
content: free
langs:
- Python
frameworks:
- pygame
licenses:
- MIT
updated: 2024-03-12
images:
- >-
https://github.com/maxerbox/Planet-Lander-with-pygame/raw/master/media/media/intro.png
- >-
https://github.com/maxerbox/Planet-Lander-with-pygame/raw/master/media/media/ai.png
- >-
https://github.com/maxerbox/Planet-Lander-with-pygame/raw/master/media/media/credit.png
- name: Poink
originals:
- Poing
type: clone
repo: https://github.com/moechofe/lowresnx-poink
development: complete
status: playable
langs:
- BASIC
- C
frameworks:
- LowRes NX
- SDL2
licenses:
- MIT
images:
- https://img.itch.zone/aW1hZ2UvMTQ3MDk4NS84NTc5OTYyLnBuZw==/347x500/fB5MnS.png
- https://img.itch.zone/aW1hZ2UvMTQ3MDk4NS84NTc5OTU4LnBuZw==/original/15vLWn.png
- https://img.itch.zone/aW1hZ2UvMTQ3MDk4NS84NTc5OTU5LnBuZw==/347x500/dubQhw.png
video:
youtube: gSGI31Mpeak
updated: 2023-05-20
- name: PokeTraveler
originals:
- Pokémon Gold
type: similar
repo: 'https://github.com/pokemium/PokeTraveler'
development: halted
status: semi-playable
content: commercial
langs:
- Go
licenses:
- As-is
info: A game that just roams the world of Pokemon GSC.
updated: 2024-03-13
images:
- 'https://raw.githubusercontent.com/pokemium/PokeTraveler/master/docs/demo.png'
- 'https://raw.githubusercontent.com/pokemium/PokeTraveler/master/docs/demo2.png'
- 'https://raw.githubusercontent.com/pokemium/PokeTraveler/master/docs/demo3.png'
- 'https://raw.githubusercontent.com/pokemium/PokeTraveler/master/docs/demo4.png'
- name: Prepare Carefully
originals:
- RimWorld
type: tool
repo: 'https://github.com/edbmods/EdBPrepareCarefully'
feed: 'https://github.com/edbmods/EdBPrepareCarefully/releases.atom'
development: sporadic
content: commercial
langs:
- 'C#'
frameworks:
- .NET
licenses:
- MIT
info: >-
The Prepare Carefully mod allows you to customize your RimWorld colonists,
choose your gear and prepare for your crash landing!
updated: '2020-01-13'
images:
- >-
https://rimworldbase.com/wp-content/uploads/2017/05/Prepare-Carefully-Mod-3.jpg
- >-
https://rimworldbase.com/wp-content/uploads/2017/05/Prepare-Carefully-Mod-2.jpg
- >-
https://rimworldbase.com/wp-content/uploads/2017/05/Prepare-Carefully-Mod-1.jpg
- >-
https://rimworldbase.com/wp-content/uploads/2017/05/Prepare-Carefully-Mod-4.jpg
- name: Prince of Persia (JS) - princejs.com
originals:
- Prince of Persia
type: remake
repo: 'https://github.com/oklemenz/PrinceJS'
url: 'https://princejs.com/'
feed: 'https://github.com/oklemenz/PrinceJS/releases.atom'
development: sporadic
status: playable
content: free
langs:
- JavaScript
frameworks:
- Phaser
licenses:
- Unlicense
info: >-
Prince of Persia reimplementation written in HTML5 / JavaScript (MS-DOS
version)
updated: 2024-03-15
images:
- 'https://pbs.twimg.com/media/FI6xwpnX0Acf6Lt?format=jpg&name=4096x4096'
- name: Prince-Monogame
originals:
- Prince of Persia 2
langs:
- C#
frameworks:
- MonoGame
- OpenGL
- OpenTK
- SDL2
licenses:
- GPL2
development: halted
status: playable
repo: https://github.com/salvadorc17/Prince-Monogame
feed: https://github.com/salvadorc17/Prince-Monogame/releases.atom
type: remake
updated: 2024-03-16
images:
- https://raw.githubusercontent.com/salvadorc17/Prince-Monogame/master/preview.png
- name: Project Alice
images:
- https://raw.githubusercontent.com/schombert/Project-Alice/main/docs/Devlogs/2023-12/images/gfm.png
langs:
- C++
licenses:
- GPL3
development: active
originals:
- Victoria II
repo: https://github.com/schombert/Project-Alice
status: playable
type: remake
updated: 2024-04-19
url: https://schombert.github.io/Project-Alice/
- name: Project-Uranium-Godot
originals:
- Pokémon Uranium
type: remake
repo: 'https://github.com/acedogblast/Project-Uranium-Godot'
development: halted
status: unplayable
content: free
langs:
- GDScript
frameworks:
- Godot
licenses:
- MIT
info: A work in progress re-implementation of the game Pokemon Uranium in the Godot Engine.
updated: 2024-03-17
video:
youtube: jIErfbevFOM
- name: Project Porcupine
originals:
- Dwarf Fortress
- RimWorld
type: similar
repo: 'https://github.com/OrderOfThePorcupine/ProjectPorcupine'
development: halted
status: unplayable
content: free
langs:
- 'C#'
frameworks:
- Unity
licenses:
- CC-BY-NC-SA
- GPL3
updated: '2022-05-29'
images:
- >-
https://cloud.githubusercontent.com/assets/22880786/19826387/7ad0f0d2-9dd4-11e6-92f3-eb47b395ac63.png
video:
youtube: mVzuBIBCL5o
- name: Pokémon Polished Crystal
originals:
- Pokémon Gold
status: playable
type: remake
repo: 'https://github.com/Rangi42/polishedcrystal'
url: 'https://hax.iimarckus.org/topic/6874/'
feed: 'https://github.com/Rangi42/polishedcrystal/releases.atom'
development: active
content: commercial
langs:
- Assembly
licenses:
- As-is
info: >-
An upgrade to Pokémon Crystal. Brings features and content up to date, and
adds some original content.
updated: '2021-10-21'
images:
- >-
https://raw.githubusercontent.com/Rangi42/polishedcrystal/master/screenshots/title-screen.png
- >-
https://raw.githubusercontent.com/Rangi42/polishedcrystal/master/screenshots/running-shoes.png
- >-
https://raw.githubusercontent.com/Rangi42/polishedcrystal/master/screenshots/town-map.png
video:
youtube: d9Zsukb9EKY
- name: POSTAL 1 Open Source
originals:
- Postal
type: remake
repo: https://github.com/Oniryck/POSTAL-1-Open-Source
development: halted
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
info: POSTAL 1 source code
updated: 2024-03-18
images:
- https://runningwithscissors.com/wp-content/uploads/2016/09/p1_screen_02-300x225.png
- name: The Powder Toy
originals:
- Powder Game
type: clone
repo: https://github.com/The-Powder-Toy/The-Powder-Toy
feed: https://github.com/The-Powder-Toy/The-Powder-Toy/releases.atom
url: https://powdertoy.co.uk/
development: very active
status: playable
content: open
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
updated: 2024-03-19
images:
- https://powdertoy.co.uk/Themes/Next/Design/Images/Screen3.png
- https://powdertoy.co.uk/Themes/Next/Design/Images/Screen2.png
- https://powdertoy.co.uk/Themes/Next/Design/Images/Screen1.png
video:
youtube: QKfwYOg1yog
- name: PowerslaveGDX
originals:
- Powerslave
type: remake
repo: 'https://gitlab.com/m210/PowerslaveGDX'
url: 'https://m210.duke4.net/'
development: sporadic
status: playable
content: commercial
langs:
- Java
frameworks:
- libGDX
licenses:
- Custom
info: PC version (BUILD engine based)
updated: 2024-03-20
video:
youtube: wRmQHJnAPac
- name: Powerslave EX
originals:
- Powerslave
repo: https://github.com/svkaiser/PowerslaveEX
url: https://powerslaveex.wordpress.com/
development: halted
status: playable
content: commercial
licenses:
- GPL3
type: remake
updated: 2020-01-05
info: Remake of the PlayStation version of the game
frameworks:
- SDL2
langs:
- C++
video:
youtube: -zZYsNvPwEA
- name: Powerslide remake
originals:
- Powerslide
type: remake
repo: https://github.com/dm999/powerslideremake
url: https://www.moddb.com/mods/powerslideremake
feed: https://rss.moddb.com/mods/powerslideremake/articles/feed/rss.xml
development: sporadic
status: semi-playable
content: commercial
langs:
- C++
frameworks:
- OGRE
- SFML
licenses:
- MIT
updated: 2024-03-21
multiplayer:
- Competitive
- Online
images:
- https://media.moddb.com/cache/images/mods/1/42/41287/thumb_620x2000/02.jpg
- https://media.moddb.com/cache/images/mods/1/42/41287/thumb_620x2000/04.jpg
- https://media.moddb.com/cache/images/mods/1/42/41287/thumb_620x2000/01.jpg
video:
moddb: 2035338
- name: pq2
frameworks:
- ncurses
- Qt
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Progress Quest
status: semi-playable
repo: https://github.com/nbollom/pq2
type: remake
updated: 2022-12-21
- name: PrBoom+
images:
- https://sourceforge.net/p/prboom-plus/screenshot/222124.jpg
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Doom
- Heretic
- Hexen
frameworks:
- SDL2
status: playable
repo: https://github.com/coelckers/prboom-plus
type: remake
url: https://prboom-plus.sourceforge.net/
updated: 2024-03-22
- name: Prince of Persia Apple II
originals:
- Prince of Persia
type: official
repo: 'https://github.com/jmechner/Prince-of-Persia-Apple-II'
url: https://www.jordanmechner.com/books/journals
development: complete
status: playable
content: commercial
langs:
- Assembly
licenses:
- As-is
updated: '2022-06-18'
video:
youtube: Jbk5qH2-1S8
- name: Privateer - Gemini Gold
images:
- https://privateer.sourceforge.net/images/screenshot-3-perry-superbase-landing-pad.png
- https://privateer.sourceforge.net/images/screenshot-1-approaching-planet-under-attack.png
- https://privateer.sourceforge.net/images/screenshot-4-merchant-guild-room.png
- https://privateer.sourceforge.net/images/screenshot-5-kilrathi-gothri-explosion.png
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- 'Wing Commander: Privateer'
status: playable
repo: https://sourceforge.net/projects/privateer/
type: remake
url: https://privateer.sourceforge.net/
updated: 2023-01-10
video:
youtube: OtjV-rXNKjk
- name: progress-quest
frameworks:
- Qt
info: More or less feature parity with the original, saving/loading/etc. works.
langs:
- C++
licenses:
- MIT
development: halted
originals:
- Progress Quest
status: unplayable
repo: https://github.com/sandsmark/progress-quest
type: remake
updated: 2023-01-20
- name: Project Carrot
frameworks:
- Qt
- SFML
info: Needs original game data
langs:
- C++
licenses:
- MIT
development: halted
originals:
- Jazz Jackrabbit 2
repo: https://github.com/soulweaver91/project-carrot
status: semi-playable
type: remake
updated: 2024-03-23
url: https://carrot.soulweaver.fi/
images:
- https://carrot.soulweaver.fi/assets/screen1.png
video:
youtube: dQqU2YRLoqU
- name: Project Dollhouse
frameworks:
- MonoGame
langs:
- C#
licenses:
- MPL
development: sporadic
originals:
- The Sims Online
status: semi-playable
repo: https://github.com/Afr0Games/Project-Dollhouse
type: remake
updated: 2021-04-24
video:
youtube: -iNQ-6LHMUs
- name: 'Project: Xenocide'
langs:
- C#
frameworks:
- XNA
licenses:
- MIT
content: commercial
development: halted
originals:
- 'X-COM: UFO Defense'
- 'X-COM: Terror from the Deep'
- 'X-COM: Apocalypse'
status: unplayable
type: clone
updated: 2022-04-23
repo: https://github.com/astyanax/Project-Xenocide
video:
youtube: 0WZ4k61o0Kc
- name: ProjectX
images:
- https://forsakenx.github.io/fsplanet/images/I_ins_koth001.JPG
- https://forsakenx.github.io/fsplanet/images/I_ins_koth006.JPG
- https://forsakenx.github.io/fsplanet/images/I_ins_koth011.JPG
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Forsaken
repo: https://github.com/ForsakenX/forsaken
status: playable
type: remake
updated: 2013-05-29
url: https://forsakenx.github.io/
- name: ProQuake 4