-
Notifications
You must be signed in to change notification settings - Fork 317
/
c.yaml
1669 lines (1589 loc) · 42.3 KB
/
c.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: C-Dogs SDL
feed: https://cxong.github.io/cdogs-sdl/feed.xml
frameworks:
- SDL2
images:
- https://raw.github.com/cxong/cdogs-sdl/master/wiki/images/thumbs/1.png
- https://raw.github.com/cxong/cdogs-sdl/master/wiki/images/thumbs/2.png
- https://raw.github.com/cxong/cdogs-sdl/master/wiki/images/thumbs/3.png
langs:
- C
licenses:
- BSD2
- GPL2
content: open
development: sporadic
originals:
- C-Dogs
- Cyberdogs
- Wolfenstein 3D
- Spear of Destiny
repo: https://github.com/cxong/cdogs-sdl
status: playable
type: remake
updated: 2021-10-16
url: https://cxong.github.io/cdogs-sdl/
video:
youtube: gnZX0IJV4oo
- name: C-evo
images:
- https://media.indiedb.com/cache/images/games/1/14/13047/thumb_620x2000/two_settlements_up_two_to_go.jpg
- https://media.indiedb.com/cache/images/games/1/14/13047/thumb_620x2000/military_research.jpg
- https://media.indiedb.com/cache/images/games/1/14/13047/thumb_620x2000/The_Pyramids_wonder.jpg
- https://media.indiedb.com/cache/images/games/1/14/13047/thumb_620x2000/the_first_contact_with_French.jpg
- https://media.indiedb.com/cache/images/games/1/14/13047/thumb_620x2000/city_production.jpg
- https://media.indiedb.com/cache/images/games/1/14/13047/thumb_620x2000/full_map.jpg
- https://media.indiedb.com/cache/images/games/1/14/13047/thumb_620x2000/beginning.jpg
langs:
- Delphi
licenses:
- PD
originals:
- Civilization II
repo: http://www.c-evo.org/files/files.php
development: halted
status: playable
type: clone
added: 2013-09-19
updated: 2024-05-15
url: http://www.c-evo.org/
- name: c64-nuclearreaction
langs:
- C
- Assembly
licenses:
- GPL3
originals:
- Nuclear Reaction
status: unplayable
development: halted
repo: https://github.com/maikmerten/c64-nuclearreaction
type: remake
updated: 2022-07-16
- name: Cadaver
development: halted
images:
- https://jotd.pagesperso-orange.fr/cadaver/cadaver_remake_pic.png
langs:
- C++
licenses:
- GPL2
content: commercial
originals:
- Cadaver
status: semi-playable
type: remake
updated: 2021-01-21
url: https://jotd.pagesperso-orange.fr/cadaver/
- name: CaesarIA
info: most of original game works, except war logic
langs:
- C++
- JavaScript
licenses:
- GPL3
development: halted
originals:
- Caesar III
repo: https://github.com/dalerank/caesaria-game
status: playable
type: remake
updated: 2020-02-08
url: https://bitbucket.org/dalerank/caesaria/wiki/Home
- name: Cannon Fodder
licenses:
- As-is
content: commercial
langs:
- JavaScript
development: halted
originals:
- Cannon Fodder
status: unplayable
repo: https://github.com/krazyjakee/CannonFodder
type: remake
updated: 2022-06-03
- name: Cannonball
development: halted
langs:
- C++
frameworks:
- SDL2
licenses:
- MAME
content: commercial
originals:
- Out Run
repo: https://github.com/djyt/cannonball
status: playable
type: remake
added: 2014-02-06
updated: 2024-05-16
url: https://github.com/djyt/cannonball/wiki
images:
- https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSo2-aVA4K1MzsUor1t3n51n3a68Kzgzs-6F3NEg44BnvA-IOg1tou-UAq1kLRzOlSUtqxBHgrSr4DRrP1UpXOaAxiAUJ63YTiUGlAe-YowTz5wH9qjFkGDsFU4HM_jt6p5g6S/s1600/view1.png
- https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1VWm_8GDU8orNGwCRdrHXvYObouiwqw50II8Os8D5kPGoSXAu96k4KDd2x_3RnLWonwPUfMbCiIa6D2Q88NRua9c76Q88BfrhGMYuHPPpqQTYaenyA67Pd85UBIKbJhfAXBN5/s1600/view2.png
- https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgw2is-f_L9SzMtcTWTsbcpWzTZDsD1H3lsaqrx-Jxx6ybIG0d-u42ngvSeC16Wyv1JIiG3nbeTStR-JJgOZ9y2iav1pXGfoID-b82LCL6Pw-Jh-Dm8fjb8EbZSBQVbuFlbiv5F/s1600/view3.png
video:
youtube: 2omri7L7Av0
- name: canvas-tetris
originals:
- Tetris
type: remake
repo: 'https://github.com/dionyziz/canvas-tetris'
url: 'https://dionyziz.com/graphics/canvas-tetris/'
development: halted
status: playable
content: open
langs:
- JavaScript
licenses:
- MIT
info: >-
A very simple HTML5 version of Tetris, for educational purposes, made in 45
minutes.
updated: '2022-07-27'
video:
youtube: GQTZ_TPxJhM
- name: Captain Blood
originals:
- Captain Blood
type: official
repo: 'https://github.com/storm-devs/captain-blood'
development: complete
status: playable
content: free
langs:
- C++
frameworks:
- DirectX
licenses:
- GPL3
updated: '2022-12-10'
images:
- 'https://raw.githubusercontent.com/storm-devs/captain-blood/screens/blood1.jpg'
- 'https://raw.githubusercontent.com/storm-devs/captain-blood/screens/blood2.jpg'
- 'https://raw.githubusercontent.com/storm-devs/captain-blood/screens/blood3.jpg'
video:
youtube: UiZMQVPBQhk
- name: Carnage3D
langs:
- C++
frameworks:
- OpenGL
licenses:
- MIT
content: free
development: halted
status: unplayable
originals:
- Grand Theft Auto
repo: https://github.com/codenamecpp/carnage3d
type: remake
url: https://codenamecpp.github.io/carnage3d/web/carnage3D_wasm.html
images:
- https://raw.githubusercontent.com/codenamecpp/carnage3d/master/screenshots/WorksOnLinux.png
- https://raw.githubusercontent.com/codenamecpp/carnage3d/master/screenshots/SplitScreenTest.png
video:
youtube: KnqaO0YZzZY
added: 2019-10-21
updated: 2024-05-17
- name: Cart Life
originals:
- Cart Life
type: remake
repo: 'https://github.com/gondur/cartlife_src'
url: 'https://sourceforge.net/projects/cartlife/'
development: complete
status: playable
content: free
langs:
- AGS Script
frameworks:
- Adventure Game Studio
licenses:
- MIT
info: Source code to CartLife
updated: '2020-11-18'
images:
- 'https://img.itch.zone/aW1nLzQwMDc1NTIucG5n/original/ALH%2FTB.png'
- 'https://img.itch.zone/aW1hZ2UvNDEwOTI3LzIwNDMyNzUucG5n/original/hO5Uq2.png'
- 'https://img.itch.zone/aW1hZ2UvNDEwOTI3LzIwNDMyNzgucG5n/original/HYAymI.png'
video:
youtube: lCjq7X_9wNs
- name: Castle of the Winds in Elm
langs:
- Elm
licenses:
- BSD
development: halted
originals:
- Castle of the Winds
status: playable
repo: https://github.com/mordrax/cotwelm
type: remake
updated: 2022-07-16
url: http://game.castleofthewinds.com/
images:
- https://mordrax.github.io/cotwmtor/images/immortal.png
- https://mordrax.github.io/cotwmtor/images/inventory_after.png
- https://mordrax.github.io/cotwmtor/images/signs.png
- https://mordrax.github.io/cotwmtor/images/corridor-example.png
- https://mordrax.github.io/cotwmtor/images/rip_improved.png
- name: Castle-Combat
images:
- https://www.linux-games.com/castle-combat/shot1.png
- https://www.linux-games.com/castle-combat/shot2.png
langs:
- Python
licenses:
- GPL2
development: halted
originals:
- Rampart
repo: https://github.com/karlb/castle-combat
status: playable
type: remake
updated: 2019-10-17
url: https://www.linux-games.com/castle-combat/
- name: The Castles of Dr. Creep
images:
- https://cdn.cloudflare.steamstatic.com/steam/apps/517930/ss_16407973a1fc0347cbd718f1ea6ed10595fbf41e.600x338.jpg?t=1472936580
- https://cdn.cloudflare.steamstatic.com/steam/apps/517930/ss_5d33c3e4afcb7f9de7e52e345a3e8d597d9447a5.600x338.jpg?t=1472936580
- https://cdn.cloudflare.steamstatic.com/steam/apps/517930/ss_9b2b10d1ea1bfe0d8ed5137e59348e6096cabc68.600x338.jpg?t=1472936580
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: commercial
development: complete
originals:
- The Castles of Dr. Creep
status: playable
multiplayer:
- Local
- Co-op
- Split-screen
repo: https://github.com/segrax/DrCreep
type: remake
updated: 2021-07-29
url: http://creep.sourceforge.net/
info: open source reimplementation of the original 1984 Commodore 64 game by Ed Hobbs
- name: 'Cataclysm: Dark Days Ahead'
frameworks:
- ncurses
- SDL2
images:
- https://cataclysmdda.org/assets/images/showcase-ultica.png
langs:
- C++
licenses:
- CC-BY-SA
development: very active
originals:
- Cataclysm
repo: https://github.com/CleverRaven/Cataclysm-DDA
status: playable
type: remake
added: 2016-10-09
updated: 2024-05-18
url: https://cataclysmdda.org/
video:
youtube: iHfpBze8ecA
- name: CatacombGL
originals:
- Catacomb 3-D
type: remake
repo: https://github.com/ArnoAnsems/CatacombGL
development: sporadic
status: playable
content: commercial
langs:
- C++
frameworks:
- OpenGL
- SDL2
licenses:
- GPL3
info: CatacombGL is a Windows source port with OpenGL graphics for the 1992 game The Catacomb Abyss.
added: 2019-10-02
updated: 2024-05-19
images:
- https://pbs.twimg.com/media/EFBQFuVXoAYNFVe.jpg
- https://pbs.twimg.com/media/ECrh0FIW4AAbMEe.jpg
- https://pbs.twimg.com/media/D6jd-gjUwAE07jY.jpg
- name: CatacombSDL
development: halted
langs:
- C
licenses:
- GPL2
content: commercial
originals:
- Catacomb
repo: https://github.com/Blzut3/CatacombSDL
status: playable
type: remake
updated: 2014-07-23
- name: Cattle Bity
type: clone
originals:
- Battle City
repo: https://github.com/dogballs/cattle-bity
url: https://dogballs.github.io/cattle-bity/
development: complete
status: playable
langs:
- TypeScript
licenses:
- MIT
content: commercial
updated: 2020-05-01
images:
- https://i.imgur.com/zsXjPTM.png
- https://i.imgur.com/Myp9oY6.png
- https://i.imgur.com/zplA29x.png
- https://i.imgur.com/aamkvUB.png
- name: CaveCube
originals:
- Minecraft
type: clone
repo: 'https://github.com/PQCraft/CaveCube'
feed: 'https://github.com/PQCraft/CaveCube/releases.atom'
development: sporadic
status: unplayable
content: open
langs:
- C
frameworks:
- SDL2
- OpenGL
licenses:
- BSL
info: An in-development Minecraft/Infiniminer clone
added: 2023-04-26
updated: 2024-05-20
images:
- >-
https://raw.githubusercontent.com/PQCraft/PQCraft/master/Screenshot_20221128_010856.png
- name: CaveExpress
frameworks:
- SDL
images:
- https://i0.wp.com/www.linuxlinks.com/wp-content/uploads/2021/03/CaveExpress-tutorial.png?resize=700%2C394&ssl=1
- https://i0.wp.com/www.linuxlinks.com/wp-content/uploads/2021/03/CaveExpress-map-editor.png?resize=700%2C394&ssl=1
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Ugh!
repo: https://github.com/mgerhardy/caveexpress
feed: https://github.com/mgerhardy/caveexpress/releases.atom
status: playable
type: clone
added: 2014-06-24
updated: 2024-05-21
url: http://www.caveproductions.org/
video:
vimeo: 79598975
- name: CavePacker
frameworks:
- SDL
langs:
- C
licenses:
- GPL3
development: halted
originals:
- Sokoban
repo: https://github.com/mgerhardy/caveexpress
feed: https://github.com/mgerhardy/caveexpress/releases.atom
status: playable
type: clone
added: 2014-06-24
updated: 2024-05-22
url: http://www.caveproductions.org/
video:
vimeo: 105909375
- name: cc94
development: halted
langs:
- C++
licenses:
- AGPL3
content: commercial
originals:
- Sid Meier's Colonization
status: unplayable
repo: https://github.com/institution/cc94
type: remake
updated: 2022-07-16
url: https://institution.github.io/cc94/
images:
- https://raw.githubusercontent.com/institution/cc94/master/screenshot/2016-05-16.png
- https://raw.githubusercontent.com/institution/cc94/master/screenshot/2016-04-21.png
- https://raw.githubusercontent.com/institution/cc94/master/screenshot/2016-04-20.png
- https://raw.githubusercontent.com/institution/cc94/master/screenshot/2016-04-11.png
- name: CCCP
development: active
status: playable
langs:
- C++
frameworks:
- Allegro
- SDL2
licenses:
- AGPL3
content: free
originals:
- Cortex Command
info: Cortex Command Community Project is based on the open sourced code of Cortex Command
repo: https://github.com/cortex-command-community/Cortex-Command-Community-Project
feed: https://github.com/cortex-command-community/Cortex-Command-Community-Project/releases.atom
type: remake
multiplayer:
- Split-screen
- Online
- LAN
added: 2019-08-20
updated: 2024-05-23
images:
- https://cortex-command-community.github.io/static/media/content-laden.5f066946a3126bd6cc7e.gif
- https://cortex-command-community.github.io/static/media/new-content.fe88597c5a6fe22ce735.gif
- https://cortex-command-community.github.io/static/media/improved-gameplay.4cf4dd5ca9ede24ce88b.gif
- name: CCOSS
type: official
originals:
- Cortex Command
repo: https://github.com/DataRealms/CCOSS
url: http://tradestar.datarealms.com/games.html
development: complete
status: playable
langs:
- C++
licenses:
- AGPL3
content: commercial
updated: 2022-05-07
images:
- https://s3.amazonaws.com/DRLMainStatic/images/screenfoursplit.jpg
- https://s3.amazonaws.com/DRLMainStatic/images/screenrobopope.jpg
- https://s3.amazonaws.com/DRLMainStatic/images/ccgifs/rocketboom.gif
video:
youtube: o6NGBGwtwpk
- name: ccleste
originals:
- Celeste Classic
type: remake
repo: 'https://github.com/lemon32767/ccleste'
development: halted
status: playable
content: free
langs:
- C
frameworks:
- SDL
- SDL2
licenses:
- As-is
info: A port of Celeste Classic for 3DS and Windows
added: 2021-10-20
updated: 2024-05-24
images:
- 'https://raw.githubusercontent.com/lemon-sherbet/ccleste/master/screenshot.png'
- name: chainreaction
langs:
- Java
licenses:
- LGPL3
originals:
- Nuclear Reaction
status: playable
repo: https://github.com/maikmerten/chainreaction
development: halted
type: remake
updated: 2022-07-16
url: http://cr.freewarepoint.de/
- name: Chariot
development: halted
frameworks:
- SDL2
images:
- https://cloud.githubusercontent.com/assets/20009343/16906794/daccd474-4c71-11e6-90ec-6821e5797b5c.png
langs:
- Rust
licenses:
- MIT
content: commercial
originals:
- Age of Empires
repo: https://github.com/ChariotEngine/Chariot
status: unplayable
type: remake
updated: 2019-10-26
- name: Chocolate Doom
images:
- https://www.chocolate-doom.org/wiki/images/9/9f/Chocolate-aliens-doom.png
- https://www.chocolate-doom.org/wiki/images/6/6b/Chocolate-aod-doom.png
- https://www.chocolate-doom.org/wiki/images/e/e3/Chocolate-batman-doom.png
- https://www.chocolate-doom.org/wiki/images/d/d5/Obituary.png
langs:
- C
licenses:
- GPL2
development: active
status: playable
originals:
- Doom
- Heretic
- Hexen
- Strife
repo: https://github.com/chocolate-doom/chocolate-doom
type: remake
url: https://www.chocolate-doom.org/
updated: 2021-02-10
- name: Chocolate Duke3D
type: remake
originals:
- Duke Nukem 3D
repo: https://github.com/fabiensanglard/chocolate_duke3D
development: halted
status: playable
langs:
- C
frameworks:
- SDL
licenses:
- Custom
content: commercial
updated: 2020-01-07
- name: Chrono Trigger C
originals:
- Chrono Trigger
type: remake
repo: 'https://github.com/AandersonL/Chrono-Trigger-C'
development: halted
status: unplayable
content: commercial
langs:
- C
frameworks:
- SDL2
licenses:
- As-is
info: 'A simple remake of Chrono Trigger written in C, using the SDL API'
updated: 2022-06-01
images:
- >-
https://raw.githubusercontent.com/AandersonL/Chrono-Trigger-C/master/Resourcers/chrono.png
- name: Chronoshift
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- 'Command & Conquer: Red Alert'
repo: https://github.com/TheAssemblyArmada/Chronoshift
type: remake
status: playable
updated: 2020-07-22
- name: Circus Linux!
images:
- https://libregamewiki.org/images/f/fb/Circus-Linux.png
langs:
- C
licenses:
- GPL2
development: complete
originals:
- Circus Atari
status: playable
type: remake
updated: 2022-02-09
url: http://www.newbreedsoftware.com/circus-linux/
- name: Citadel
info: 'Needs game data from System Shock for audio playback'
langs:
- C#
frameworks:
- Unity
licenses:
- As-is
content: commercial
originals:
- System Shock
status: playable
repo: https://github.com/JosiahJack/Citadel
development: active
type: remake
added: 2016-05-09
updated: 2024-05-26
url: https://www.indiedb.com/games/citadel
video:
indiedb: 2140124
images:
- https://media.indiedb.com/cache/images/games/1/36/35232/thumb_620x2000/deltagrove_comparison.png
- https://media.indiedb.com/cache/images/games/1/36/35232/thumb_620x2000/ezgif-6-aeefb8067282.gif
- https://media.indiedb.com/cache/images/games/1/36/35232/thumb_620x2000/unknown-1.png
- name: Citybound
originals:
- SimCity
type: clone
repo: https://github.com/citybound/citybound
url: https://aeplay.org/citybound
development: halted
status: semi-playable
content: open
langs:
- Rust
licenses:
- AGPL3
added: 2019-11-14
updated: 2024-05-27
video:
youtube: 5YIwHN1vRYk
- name: Civ2-clone
originals:
- Civilization II
type: remake
repo: 'https://github.com/axx0/Civ2-clone'
development: active
status: unplayable
content: commercial
langs:
- C#
frameworks:
- .NET
- raylib
licenses:
- GPL3
added: 2021-03-21
updated: 2024-05-28
images:
- https://github.com/axx0/Civ2-clone/assets/21365802/864ab9b4-ce4c-4715-9447-9e913298a971
- name: 'Civilization: Call To Power 2 Source Project'
licenses:
- Custom
content: commercial
langs:
- C++
frameworks:
- SDL
- SDL2
originals:
- Call to Power II
status: playable
repo: https://github.com/civctp2/civctp2
development: sporadic
type: remake
added: 2015-04-10
updated: 2024-05-29
url: https://ctp2.darkdust.net/
images:
- https://github.com/civctp2/civctp2/raw/master/screenshot.png
- https://github.com/civctp2/civctp2/raw/master/Advance-Graph/Advance_english.png
- name: CivOne
development: halted
langs:
- C#
licenses:
- CC0
content: commercial
originals:
- Civilization
status: unplayable
repo: https://github.com/SWY1985/CivOne
type: remake
updated: 2022-10-10
- name: Classic RBDoom 3 BFG
originals:
- Doom
- Doom 3
type: tool
repo: 'https://github.com/MadDeCoDeR/Classic-RBDOOM-3-BFG'
url: 'https://www.moddb.com/mods/classic-rbdoom-3-bfg-edition'
development: active
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
- Custom
info: Classic RBDoom 3 BFG is updating the classic DOOM engine inside DOOM 3 BFG Edition
updated: 2022-07-16
images:
- https://media.moddb.com/images/mods/1/36/35289/DOOM_3_BFG_Edition_7_9_2018_3_16_21.png
- https://media.moddb.com/images/mods/1/36/35289/DOOM_3_BFG_Edition_21_12_2017_2.3.png
- https://media.moddb.com/images/mods/1/36/35289/Classic_RBDOOM_3_BFG.4.jpg
video:
youtube: LwGwpOTDlpA
- name: ClassiCube
originals:
- Minecraft
type: remake
repo: 'https://github.com/UnknownShadow200/ClassiCube'
url: 'https://www.classicube.net'
development: very active
status: playable
multiplayer:
- Online
content: open
langs:
- C
frameworks:
- OpenGL
licenses:
- BSD
info: 'A complete re-implementation of Minecraft Classic, with optional additions.'
updated: '2020-09-08'
images:
- 'https://i.imgur.com/FCiwl27.png'
- 'https://i.imgur.com/etMBl46.jpg'
video:
youtube: ufsasr0yqZk
- name: 'ClassicUO'
langs:
- C#
frameworks:
- FNA
licenses:
- GPL3
development: active
originals:
- Ultima Online
repo: https://github.com/ClassicUO/ClassicUO
feed: https://github.com/ClassicUO/ClassicUO/releases.atom
status: playable
type: clone
added: 2020-12-16
updated: 2024-05-30
url: https://www.classicuo.eu/
multiplayer:
- Online
content: free
images:
- https://i.imgur.com/Q25qFBV.png
- https://camo.githubusercontent.com/1d344910ad90f9b5a2e15b7ca3d244a32aa4ce2264504d10a01aa6e9a554a289/68747470733a2f2f692e706f7374696d672e63632f59324474364e6a382f726f6f662d74696c65732e676966
- https://camo.githubusercontent.com/2ef99c6eaab62079325c714645dc4af20a3a9e10ca977aaac49cb5166e3e5d0f/68747470733a2f2f692e706f7374696d672e63632f4e466e5951745a5a2f747265652d6861636b2e676966
video:
youtube: HITXSeg7zYc
- name: Clonepoint
type: clone
originals:
- Gunpoint
repo: https://github.com/rohit-n/Clonepoint
url: https://rohit.itch.io/clonepoint
development: sporadic
status: playable
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: open
updated: 2019-04-02
images:
- https://img.itch.zone/aW1hZ2UvMTcyMzAvMjE2NDA4LmpwZw==/original/%2FK3GJg.jpg
- https://img.itch.zone/aW1hZ2UvMTcyMzAvMjE2NDA3LmpwZw==/original/ynL%2FK%2F.jpg
- https://img.itch.zone/aW1hZ2UvMTcyMzAvMjE2NDA5LmdpZg==/original/3ejXxh.gif
- name: Clumsy Bird
frameworks:
- melonJS
licenses:
- GPL3
content: commercial
development: complete
originals:
- Flappy Bird
status: playable
repo: https://github.com/ellisonleao/clumsy-bird
type: remake
updated: 2022-07-16
url: https://ellisonleao.github.io/clumsy-bird/
images:
- https://i.imgur.com/Slbvt65.png
- name: CnC Remastered Collection
originals:
- Command & Conquer
type: official
repo: 'https://github.com/electronicarts/CnC_Remastered_Collection'
url: 'https://www.ea.com/games/command-and-conquer/command-and-conquer-remastered'
development: complete
status: playable
multiplayer:
- Competitive
- Online
content: commercial
langs:
- C++
licenses:
- GPL3
updated: '2022-06-19'
images:
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-graphics-switching-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-bonus-gallery-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-full-res-screenshot-mod-support.png.adapt.1456w.png
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-upscaled-cinematics-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-in-game-ui-sidebar-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-jukebox-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-multiplayer-custom-games-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-1v1-quickmatches-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-replays-observer-mode-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-console-missions-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-console-cinematics-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-map-editor-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-mission-selection-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-camera-zoom-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-skirmish-mode-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-hotkey-support-black-stripe.jpg.adapt.1456w.jpg
- >-
https://media.contentapi.ea.com/content/dam/ea/command-conquer/remastered/common/spacing-top-screens/ccrem-screenshot-control-improvements-black-stripe.jpg.adapt.1456w.jpg
video:
youtube: DrtodXOIeW8
- name: coab
langs:
- C#
licenses:
- BSD
development: sporadic
originals:
- Curse of the Azure Bonds
repo: https://github.com/simeonpilgrim/coab
status: playable
type: remake
updated: 2013-05-28
- name: Colditz Escape
images:
- https://aperture-software.github.io/colditz-escape/pics/screenshot1.png
- https://aperture-software.github.io/colditz-escape/pics/screenshot2.png
- https://aperture-software.github.io/colditz-escape/pics/screenshot3.png
- https://aperture-software.github.io/colditz-escape/pics/screenshot4.png
langs:
- C
frameworks:
- OpenGL
licenses:
- GPL3
content: free
development: complete
originals:
- Escape from Colditz
status: playable
repo: https://github.com/aperture-software/colditz-escape
type: remake
updated: 2022-03-15
url: https://aperture-software.github.io/colditz-escape/
info: rewritten game engine reverse engineered from the original Amiga game engine
- name: Columns
originals:
- Columns
type: clone
repo: https://github.com/dgcor/Columns
feed: https://github.com/dgcor/Columns/releases.atom
development: sporadic
status: playable
content: free
langs:
- C++
frameworks:
- SFML
licenses:
- Zlib
images:
- >-
https://user-images.githubusercontent.com/20025614/103457653-fcb12400-4cf8-11eb-8552-1ab5f46a8450.png
added: 2021-01-30
updated: 2024-05-31
- name: 'Colobot: Gold Edition'
type: remake
originals:
- Colobot
repo: https://github.com/colobot/colobot
url: https://colobot.info/
development: active
status: playable
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: open
info: Updated version of the Colobot original source code
updated: 2019-08-01
images:
- https://colobot.info/wordpress/wp-content/uploads/The-Earth-Behind-My-Jet-Engines.png
- https://colobot.info/wordpress/wp-content/uploads/alpha-0.1.5.png
- https://colobot.info/wordpress/wp-content/uploads/I-Found-You.png
- https://colobot.info/wordpress/wp-content/uploads/Prayer-to-the-Fallen.png
video:
youtube: z67XZ155b6g
- name: Coloris
type: clone
added: 2019-10-03
updated: 2024-06-03
originals:
- Coloris
status: playable
development: halted
repo: https://github.com/DanijelAskov/coloris