-
Notifications
You must be signed in to change notification settings - Fork 420
Expand file tree
/
Copy pathp.yaml
More file actions
4127 lines (3921 loc) · 96.9 KB
/
p.yaml
File metadata and controls
4127 lines (3921 loc) · 96.9 KB
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: P'radikus Conflict
originals:
- P'Radikus Conflict
type: official
repo: 'https://github.com/TCRF/pradikus-conflict'
url: 'https://www.romhacking.net/documents/667/'
development: complete
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
info: The source code to the unlicensed NES game P’radikus Conflict.
added: 2025-11-26
updated: 2025-11-26
- name: P-Robots
originals:
- CROBOTS
type: similar
url: 'https://corewar.co.uk/probots.htm'
development: complete
status: playable
multiplayer:
- Competitive
langs:
- Pascal
licenses:
- As-is
added: 2026-01-08
updated: 2026-01-08
images:
- 'https://corewar.co.uk/screenshots/probotstitle.png'
- 'https://corewar.co.uk/screenshots/probotsarena.png'
- 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: Pac Horror
originals:
- Pac-Man
type: clone
repo: 'https://www.allegro.cc/depot/Pac-Horror/'
url: >-
http://web.archive.org/web/20121128022833/http://www.adersoftware.com/index.cfm?page=games&game=pac
development: halted
status: playable
langs:
- C
frameworks:
- Allegro
licenses:
- As-is
added: 2025-09-20
updated: 2025-09-20
images:
- 'https://web.archive.org/web/20110827191619im_/http://www.adersoftware.com/images/pachorror.gif'
- 'https://web.archive.org/web/20070408125220im_/http://www.adersoftware.com/images/pachorror2.gif'
- 'https://web.archive.org/web/20110827145123im_/http://www.adersoftware.com/images/pachorror3.gif'
- 'https://web.archive.org/web/20070405140351im_/http://www.adersoftware.com/images/pachorror4.gif'
- 'https://robinson-special-jeux.franceserv.com/gallery/Pac-Horror-03.jpg'
- 'https://robinson-special-jeux.franceserv.com/gallery/Pac-Horror-06.jpg'
- 'https://robinson-special-jeux.franceserv.com/gallery/Pac-Horror-04.jpg'
- 'https://robinson-special-jeux.franceserv.com/gallery/Pac-Horror-08.jpg'
- name: Pac Man I
originals:
- Pac-Man
type: clone
repo: 'https://archive.org/download/c-tri#:~:text=PACMAN'
url: 'https://archive.org/download/c-tri/PACMAN.zip/PacMan/README.TXT'
development: complete
status: playable
langs:
- C
frameworks:
- Allegro
licenses:
- As-is
info: This game was based on Pac Horror of Ader Software.
added: 2025-09-21
updated: 2025-09-21
- name: Pac-Man
originals:
- Pac-Man
type: official
repo: https://atariwiki.org/wiki/Wiki.jsp?page=PAC-MAN
feed: 'https://atariwiki.org/wiki/rss.jsp?page=PAC-MAN&mode=wiki'
development: complete
status: playable
content: commercial
langs:
- Assembly
licenses:
- As-is
added: 2025-09-07
updated: 2025-09-07
images:
- https://atariwiki.org/wiki/attach/PAC-MAN/Datasoft.jpg
- https://atariwiki.org/wiki/attach/PAC-MAN/Opening.jpg
- https://atariwiki.org/wiki/attach/PAC-MAN/Characters2.jpg
- https://atariwiki.org/wiki/attach/PAC-MAN/Screen2.jpg
- name: Pac-Man 99
originals:
- Pac-Man
type: clone
url: 'https://www.ocf.berkeley.edu/~pad/game-ti85-pacman99.html'
development: complete
status: playable
langs:
- Assembly
licenses:
- As-is
added: 2026-01-30
updated: 2026-01-30
images:
- 'https://www.ocf.berkeley.edu/~pad/screenshots/pac1.png'
- name: pac-wio
originals:
- Pac-Man
type: clone
repo: 'https://github.com/scarolan/pac-wio'
url: https://x.com/seeedstudio/status/2009233635476467963
development: active
status: playable
content: open
langs:
- Python
licenses:
- MIT
info: A Pac-man clone written in CircuitPython for the Seeed Wio.
added: 2026-01-17
updated: 2026-01-17
images:
- https://raw.githubusercontent.com/scarolan/pac-wio/main/images/pac-wio.jpg
- https://raw.githubusercontent.com/scarolan/pac-wio/main/images/pac-fruitjam.jpg
- name: PacDude Hero
originals:
- Pac-Man
type: clone
repo: 'https://aminet.net/package/game/misc/MunchDude'
url: >-
https://web.archive.org/web/20130523143001/http://www.16bitsoft.com/games-PacDudeHero2.htm
development: complete
status: playable
content: free
langs:
- C++
frameworks:
- SDL
- OpenGL
licenses:
- As-is
info: Also known as MunchDude Hero.
added: 2025-09-16
updated: 2025-09-16
images:
- 'https://os4depot.net/filedata/snapshot/6956_1_snap.jpg'
- 'https://os4depot.net/filedata/snapshot/6956_2_snap.jpg'
- 'https://web.archive.org/web/20110203104155im_/http://16bitsoft.com/files/PDH2/images/PDH2-InGame.png'
- name: Pachi el Marciano
originals:
- Manic Miner
type: similar
repo: 'https://sourceforge.net/projects/dragontech/'
url: >-
https://web.archive.org/web/20120708042101/http://dragontech.net/index.php/games-en/#:~:text=Pachi%20el%20Marciano
feed: 'https://sourceforge.net/projects/dragontech/rss?path=/'
development: complete
status: playable
content: open
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
added: 2025-11-28
updated: 2025-11-28
images:
- https://web.archive.org/web/20120308103123im_/http://dragontech.net/tl_files/dragontech/portfolio/games/pachi/pachi01.jpg
- https://web.archive.org/web/20120308140337im_/http://dragontech.net/tl_files/dragontech/portfolio/games/pachi/pachi05.jpg
- https://web.archive.org/web/20120308122733im_/http://dragontech.net/tl_files/dragontech/portfolio/games/pachi/pachi03.jpg
- https://web.archive.org/web/20120308124854im_/http://dragontech.net/tl_files/dragontech/portfolio/games/pachi/pachi04.jpg
- https://web.archive.org/web/20120308131203im_/http://dragontech.net/tl_files/dragontech/portfolio/games/pachi/pachi02.jpg
- name: Pachi Slot Master
originals:
- Pachi-Slot Master
type: official
repo: 'https://github.com/RetailGameSourceCode/PachiSlotMaster'
development: complete
status: playable
content: free
langs:
- C
licenses:
- As-is
added: 2026-02-13
updated: 2026-02-13
- name: pack_2048
originals:
- '2048'
type: clone
repo: >-
https://archive.softwareheritage.org/browse/origin/directory/?origin_url=https://github.com/LEARAX/pack_2048
url: 'https://crates.io/crates/pack_2048'
development: halted
status: playable
langs:
- Rust
licenses:
- MIT
added: 2025-10-24
updated: 2025-10-24
- name: Packdude
originals:
- Pac-Man
type: clone
repo: 'https://sourceforge.net/projects/packdude/'
url: 'https://packdude.sourceforge.net/'
feed: 'https://sourceforge.net/projects/packdude/rss?path=/'
development: halted
status: playable
content: open
langs:
- C
licenses:
- GPL2
added: 2025-10-22
updated: 2025-10-22
images:
- 'https://packdude.sourceforge.net/gfx/shot1.png'
- 'https://packdude.sourceforge.net/gfx/shot2.png'
- name: Pacman 3D
originals:
- Pac-Man
type: similar
repo: 'https://www.calculatorti.com/ti-games/ti-89/asm/pacman-3d/'
url: 'http://www.malcolm-s.net/ti/pacman3d/'
development: halted
status: playable
content: free
langs:
- C
frameworks:
- FAT-Engine
licenses:
- As-is
added: 2026-01-08
updated: 2026-01-08
images:
- https://web.archive.org/web/20061206081249im_/http://ti.malcolm-s.net/pacman3d/images/ss1.gif
- https://web.archive.org/web/20061206081119im_/http://ti.malcolm-s.net/pacman3d/images/ss5.gif
- https://web.archive.org/web/20061206081216im_/http://ti.malcolm-s.net/pacman3d/images/ss6.gif
- https://web.archive.org/web/20061206081300im_/http://ti.malcolm-s.net/pacman3d/images/ss7.gif
- https://web.archive.org/web/20061206081202im_/http://ti.malcolm-s.net/pacman3d/images/ss8.gif
- https://web.archive.org/web/20061206081233im_/http://ti.malcolm-s.net/pacman3d/images/ss9.gif
video:
youtube: JK1Yhsdf5F0
- name: Pacmacs
originals:
- Pac-Man
type: clone
repo: 'https://github.com/codingteam/pacmacs.el'
development: halted
status: playable
langs:
- Emacs Lisp
frameworks:
- Emacs
licenses:
- CC-BY
- MIT
added: 2025-08-11
updated: 2025-08-11
images:
- >-
https://camo.githubusercontent.com/0ee54d88e219f0e786bcffb6bb410604a9c6657a63857217a2c80a092ae19a16/687474703a2f2f692e696d6775722e636f6d2f51634e7141634c2e706e67
- >-
https://camo.githubusercontent.com/e005227321254f8a802cb294f23c76448546ec76c113d65821dd8de772c3fd2f/687474703a2f2f692e696d6775722e636f6d2f734a42727a54652e706e67
- >-
https://camo.githubusercontent.com/5629b18d71189730693b8e773fe51bb245bcb37f9467fdaab66910c0ca703264/687474703a2f2f692e696d6775722e636f6d2f57437547666e6b2e706e67
- 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 (1995)
originals:
- Pac-Man
type: clone
repo: >-
https://www.ibiblio.org/pub/micro/pc-stuff/Linux/games/arcade/pacman/#:~:text=pacman.zip
url: >-
https://www.ibiblio.org/pub/micro/pc-stuff/Linux/games/arcade/pacman/pacman.lsm
development: halted
status: playable
langs:
- C++
licenses:
- GPL2
added: 2025-10-29
updated: 2025-10-29
- 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 Arena
originals:
- Pac-Man
type: clone
repo: 'https://sourceforge.net/projects/pacmanarena/'
url: 'https://pacmanarena.sourceforge.net/'
feed: 'https://sourceforge.net/projects/pacmanarena/rss?path=/'
development: halted
status: playable
content: open
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
added: 2025-10-16
updated: 2025-10-16
images:
- 'https://pacmanarena.sourceforge.net/shot.png'
- name: Pacman For Console
originals:
- Pac-Man
type: clone
repo: https://github.com/YoctoForBeaglebone/pacman4console
development: halted
status: playable
content: open
langs:
- C
licenses:
- GPL2
added: 2025-10-10
updated: 2025-10-10
images:
- https://github.com/YoctoForBeaglebone/pacman4console/raw/master/screenshot.png
- name: Pacman in c++ with SDL
originals:
- Pac-Man
type: clone
repo: 'https://sourceforge.net/projects/pacmanincwithsd/'
feed: 'https://sourceforge.net/projects/pacmanincwithsd/rss?path=/'
development: halted
status: playable
content: free
langs:
- C++
frameworks:
- SDL
licenses:
- As-is
added: 2025-10-05
updated: 2025-10-05
images:
- 'https://a.fsdn.com/con/app/proj/pacmanincwithsd/screenshots/pacman-game.jpg'
- name: pacman.c
originals:
- Pac-Man
type: remake
repo: 'https://github.com/floooh/pacman.c'
url: 'https://floooh.github.io/pacman.c/pacman.html'
feed: 'https://github.com/floooh/pacman.c/releases.atom'
development: sporadic
langs:
- C
status: playable
licenses:
- MIT
content: commercial
added: 2025-08-17
updated: 2025-08-17
images:
- https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSrOfKZvadsgUtA0OJXvgx3wamDOzuDcBLckugKHtFKBkrEVB_8-ZpHAwoKCPYyCm_nznXOa9_0iI3SZAUAfqwCkNTVejMvUQQpG6BXYmFZ5rYGYqlbX4BEqZA4oZ2iKIzn_H-BHqWblax4GMRZfkzh5lF96tBLx3Qk0GL5Wn_owJDB6ElBikfuv-MXzM8/s898/Screenshot_2024-05-25_13-20-49.png
- 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_sdl
originals:
- Pac-Man
type: clone
repo: 'https://github.com/schuay/pacman/'
url: 'https://aur.archlinux.org/packages/pacman_sdl'
feed: 'https://github.com/schuay/pacman/releases.atom'
development: halted
status: playable
content: open
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
added: 2025-08-23
updated: 2025-08-23
images:
- https://schuay.github.io/images/pacman_sdl.png
- name: Pacman_Qt
originals:
- Pac-Man
type: remake
repo: 'https://sourceforge.net/projects/pacmanlike/'
feed: 'https://sourceforge.net/projects/pacmanlike/rss?path=/'
development: halted
status: semi-playable
content: free
langs:
- C++
frameworks:
- Qt
licenses:
- As-is
added: 2025-09-30
updated: 2025-09-30
images:
- 'https://a.fsdn.com/con/app/proj/pacmanlike/screenshots/pacman_filippakoc.jpg'
- name: pacman.zig
originals:
- Pac-Man
type: remake
repo: 'https://github.com/floooh/pacman.zig'
url: 'https://floooh.github.io/pacman.zig/pacman.html'
feed: 'https://github.com/floooh/pacman.zig/releases.atom'
development: sporadic
status: playable
content: commercial
langs:
- Zig
frameworks:
- sokol
licenses:
- MIT
added: 2025-08-21
updated: 2025-08-21
- 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: PaddleTennis
originals:
- Pong
type: clone
repo: 'https://gitlab.com/rogerbassons/PaddleTennisAndroid'
url: 'https://f-droid.org/packages/com.rogerbassonsrenart.paddletennis/'
feed: 'https://gitlab.com/rogerbassons/PaddleTennisAndroid.atom'
development: halted
status: semi-playable
langs:
- Java
licenses:
- GPL3
added: 2025-09-19
updated: 2025-09-19
- name: Painter
originals:
- Painter
type: official
url: >-
https://web.archive.org/web/20240913180922/http://www.kewlplace.com/sinister/painter_source.htm
development: complete
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
added: 2026-02-06
updated: 2026-02-06
images:
- https://www.atarimania.com/jaguar/screens/painter_sinister_developments.gif
- https://web.archive.org/web/20240623010546im_/http://www.kewlplace.com/sinister/st_paint1.jpg
- name: Paku Paku
originals:
- Pac-Man
type: remake
repo: 'https://www.classicdosgames.com/game/Paku_Paku.html'
url: 'https://web.archive.org/web/20240530130314/https://deathshadow.com/pakuPaku'
development: complete
status: playable
langs:
- Pascal
licenses:
- Custom
added: 2026-03-13
updated: 2026-03-13
images:
- https://web.archive.org/web/20240322224626if_/http://deathshadow.com/images/pakuMenu.png
- https://www.classicdosgames.com/images/screenshots/cgans/Paku_Paku.png
- name: Pandora's Blocks
originals:
- 'Tetris: The Grand Master'
type: clone
repo: 'https://github.com/Villadelfia/dmgtris'
url: 'https://villadelfia.org/dmgtris/'
feed: 'https://github.com/Villadelfia/dmgtris/releases.atom'
development: complete
status: playable
content: open
langs:
- Assembly
licenses:
- GPL3
info: >-
Pandora's Blocks (formerly DMGTRIS) is a block stacking game for the original
game boy written in assembly.
added: '2025-01-05'
updated: '2025-01-05'
images:
- 'https://villadelfia.org/i/xAAHfqDw.png'
- 'https://villadelfia.org/i/Hj2P8Pk5.png'
- 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 a Lambda!
originals:
- Super Pang
type: clone
repo: 'https://github.com/iblech/games-pang-a-lambda'
url: 'https://hackage.haskell.org/package/pang-a-lambda'
feed: 'https://hackage.haskell.org/package/pang-a-lambda.rss'
development: halted
status: semi-playable
content: open
langs:
- Haskell
frameworks:
- SDL
- Yampa
licenses:
- GPL3
added: 2026-01-20
updated: 2026-01-20
images:
- https://raw.githubusercontent.com/iblech/games-pang-a-lambda/develop/screenshots/20170520125637.png
- https://raw.githubusercontent.com/iblech/games-pang-a-lambda/develop/screenshots/20170520125638.png
- https://raw.githubusercontent.com/iblech/games-pang-a-lambda/develop/screenshots/20170520125647.png
- https://raw.githubusercontent.com/iblech/games-pang-a-lambda/develop/screenshots/20170520125648.png
video:
youtube: mbwZ3GaYDjQ
- name: Pang for Linux!
originals:
- Buster Bros.
type: clone
repo: 'https://github.com/malespiaut/pang'
development: halted
status: playable
content: open
langs:
- C
frameworks:
- SDL2
licenses:
- GPL2
added: 2026-01-01
updated: 2026-01-01
images:
- https://raw.githubusercontent.com/malespiaut/pang/master/docs/resources/gameplay.gif
- 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: PanzerChasm
originals:
- 'Chasm: The Rift'
type: remake
repo: 'https://github.com/Panzerschrek/Chasm-Reverse'
feed: 'https://github.com/Panzerschrek/Chasm-Reverse/releases.atom'
url: https://www.moddb.com/games/chasm-the-rift/downloads/panzer-chasm-v03
development: sporadic
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
added: 2025-07-26
updated: 2025-07-26
video:
youtube: kAyXTWpPtC8
images:
- https://media.moddb.com/images/downloads/1/133/132685/Screenshot_2.png
- name: Paper
originals:
- Minecraft
type: remake
repo: 'https://github.com/PaperMC/Paper'
url: 'https://papermc.io/software/paper'
development: very active
status: playable
content: open
langs:
- Java
licenses:
- GPL3
- MIT
info: >-
Paper is a Minecraft game server based on Spigot, designed to greatly improve
performance and offer more advanced features and API.
added: 2025-10-18
updated: 2025-10-18
images:
- https://papermc.io/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fhome-1.e653fca5.webp
- 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: Par Infinite Minesweeper
originals:
- Minesweeper
type: clone
repo: 'https://github.com/paulrobello/par_infini_sweeper'
url: 'https://pypi.org/project/par-infini-sweeper/'
feed: 'https://pypi.org/rss/project/par-infini-sweeper/releases.xml'
development: sporadic
status: semi-playable
content: open
langs:
- Python
licenses:
- MIT
added: 2025-09-27
updated: 2025-09-27
images:
- https://raw.githubusercontent.com/paulrobello/par_infini_sweeper/main/Screenshot.png
- name: Pararena 2.0
originals:
- Pararena
type: official
repo: 'https://github.com/softdorothy/Pararena2'
development: complete
status: playable
langs:
- C
licenses:
- MIT
added: 2025-12-16
updated: 2025-12-16
- 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: Patton Strikes Back
originals:
- 'Patton Strikes Back: The Battle of the Bulge'
type: official
url: >-
https://www.erasmatazz.com/library/source-code/#:~:text=Patton%20Strikes%20Back
development: complete
status: playable
content: free
langs:
- Pascal
licenses:
- As-is
added: 2026-01-06
updated: 2026-01-06
- name: paybacktime
originals:
- Payback Time
type: official
repo: 'https://github.com/nnevatie/paybacktime'
url: 'https://web.archive.org/web/20191213204809/http://payback-time.com/'
development: complete
status: playable
multiplayer:
- Hotseat
content: open
langs:
- C++
frameworks:
- SDL2
licenses:
- MIT
added: 2026-01-24
updated: 2026-01-24
- name: Paybacktime 2
originals:
- PaybackTime 2
type: official
repo: 'https://github.com/nnevatie/paybacktime2'
url: 'https://rflxn.com/paybacktime2/'
development: complete
status: playable
multiplayer:
- Hotseat
content: open
langs:
- Pascal
licenses:
- PD
added: 2026-01-18
updated: 2026-01-18
images:
- 'https://rflxn.com/paybacktime2/gallery/main_menu.png'
- 'https://rflxn.com/paybacktime2/gallery/gameplay_1.png'
- 'https://rflxn.com/paybacktime2/gallery/gameplay_2.png'
- 'https://rflxn.com/paybacktime2/gallery/gameplay_3.png'
- 'https://rflxn.com/paybacktime2/gallery/gameplay_4.png'
- 'https://rflxn.com/paybacktime2/gallery/gameplay_6.png'
- 'https://rflxn.com/paybacktime2/gallery/gameplay_7.png'
- 'https://rflxn.com/paybacktime2/gallery/group_editor_2.png'
- 'https://rflxn.com/paybacktime2/gallery/map_editor_1.png'
- 'https://rflxn.com/paybacktime2/gallery/weapon_editor_2.png'
- name: PCS_AppleII
originals:
- Pinball Construction Set
type: official
repo: 'https://github.com/billbudge/PCS_AppleII'
development: complete
status: playable
langs:
- Assembly
licenses:
- MIT
info: Pinball Construction Set Source Code for Apple II.
added: 2026-01-19
updated: 2026-01-19
- name: PCS_Atari800
originals:
- Pinball Construction Set
type: official
repo: 'https://github.com/billbudge/PCS_Atari800'
url: 'https://x.com/BillB/status/301398071156277248'
development: complete
status: playable
langs:
- Assembly
licenses:
- MIT
info: Pinball Construction Set Source Code for Atari 800.
added: 2026-01-19
updated: 2026-01-19
- 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: Peng-Pong
originals:
- Pong
type: similar
repo: 'https://sourceforge.net/projects/pengpong/'
url: 'https://pengpong.sourceforge.net/'
feed: 'https://sourceforge.net/p/pengpong/news/feed.rss'