-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy pathf.yaml
1459 lines (1389 loc) · 36 KB
/
f.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: F-1 Spirit
frameworks:
- SDL
langs:
- C++
licenses:
- GPL2
content: free
originals:
- F-1 Spirit
status: playable
multiplayer:
- Competitive
- Local
- Split-screen
url: https://f1spirit.jorito.net/
development: halted
type: remake
updated: 2021-05-13
images:
- https://f1spirit.jorito.net/pics/screenshot3.jpg
- https://f1spirit.jorito.net/pics/screenshot4.jpg
- https://f1spirit.jorito.net/pics/screenshot7.jpg
- name: F-Zero Clone
frameworks:
- WebGL
langs:
- JavaScript
licenses:
- As-is
content: commercial
development: halted
originals:
- F-Zero
status: unplayable
repo: https://github.com/chipbell4/F-Zero-Clone
type: remake
updated: 2022-08-09
- name: F.LF
development: complete
images:
- https://camo.githubusercontent.com/1af56a932d6c8883afed0b139e3ad6938709f94e/687474703a2f2f6c68332e676f6f676c6575736572636f6e74656e742e636f6d2f7879576a4f4658546c657a4d7a446c644d7152495073684e376939657a335641586264615732742d7431383d7731363030
langs:
- JavaScript
licenses:
- CC-BY-NC-SA
content: swappable
originals:
- Little Fighter 2
repo: https://github.com/Project-F/F.LF
status: playable
type: clone
updated: 2020-08-25
url: https://project-f.github.io/
- name: f2bgl
frameworks:
- SDL2
- OpenGL
langs:
- C++
licenses:
- As-is
content: commercial
development: halted
status: playable
originals:
- Fade to Black
repo: https://github.com/cyxx/f2bgl
type: remake
updated: 2023-11-15
url: http://cyxdown.free.fr/f2b/
images:
- https://www.ferb.fr/imgs/f2b1.jpg
- https://www.ferb.fr/imgs/f2b2.jpg
- https://www.ferb.fr/imgs/f2b3.jpg
- https://www.ferb.fr/imgs/f2b4.jpg
- name: Falling Time
frameworks:
- SDL2
images:
- https://raw.github.com/cxong/fallingtime/master/screenshot.png
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Fall Down
repo: https://github.com/cxong/FallingTime
status: playable
type: clone
updated: 2015-05-26
video:
youtube: 3MVMJkOYHSg
- name: Fallout Community Edition
originals:
- Fallout
type: remake
repo: 'https://github.com/alexbatalov/fallout1-ce'
development: sporadic
feed: https://github.com/alexbatalov/fallout1-ce/releases.atom
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- Custom
info: >-
fully working re-implementation of Fallout, with the same original gameplay,
engine bugfixes, and some quality of life improvements
updated: 2023-11-16
video:
youtube: mt5KpyNVBR8
- name: Fallout 2 Community Edition
originals:
- Fallout 2
type: remake
repo: 'https://github.com/alexbatalov/fallout2-ce/'
development: sporadic
feed: https://github.com/alexbatalov/fallout2-ce/releases.atom
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- Custom
updated: 2023-11-17
video:
youtube: aw3pEhF3eJo
- name: Falltergeist
development: halted
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
content: commercial
originals:
- Fallout 2
repo: https://github.com/falltergeist/falltergeist
status: unplayable
type: remake
url: https://falltergeist.org/
feed: https://falltergeist.org/rss
updated: 2023-11-20
- name: Fanwor
frameworks:
- SDL
images:
- https://fanwor.tuxfamily.org/fanwor-1.png
- https://fanwor.tuxfamily.org/fanwor-2.png
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Legend of Zelda
repo: https://git.tuxfamily.org/fanwor/fanwor.git
status: playable
type: clone
updated: 2023-11-21
url: https://fanwor.tuxfamily.org/
- name: fheroes2
images:
- https://github.com/ihhub/fheroes2/raw/master/docs/images/screenshots/screenshot_world_map.png?raw=true
- https://github.com/ihhub/fheroes2/raw/master/docs/images/screenshots/screenshot_castle.png?raw=true
- https://github.com/ihhub/fheroes2/raw/master/docs/images/screenshots/screenshot_battle.png?raw=true
langs:
- C++
frameworks:
- SDL
- SDL2
licenses:
- GPL2
development: very active
originals:
- Heroes of Might and Magic II
status: playable
url: https://ihhub.github.io/fheroes2/
repo: https://github.com/ihhub/fheroes2
feed: https://github.com/ihhub/fheroes2/releases.atom
type: remake
updated: 2023-11-22
info: 'direct continuation of https://sourceforge.net/projects/fheroes2/'
- name: Fight Or Perish
images:
- https://s.uvlist.net/l/y2010/12/78504.jpg
- https://s.uvlist.net/l/y2010/12/78505.jpg
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
content: open
development: halted
originals:
- Dandy
- Gauntlet
status: playable
multiplayer:
- Co-op
- Local
type: clone
updated: 2022-02-15
url: http://www.newbreedsoftware.com/fop/
info: A Dandy clone with Gauntlet influences. Choose from 8 classes and roam the maze taking treasure, vanquishing monters, and finding the exit. Use explosives against enemies and keys on locked doors.
- name: FireMadness
originals:
- Crossfire
type: clone
repo: 'https://gitlab.com/EugeneLoza/FireMadness'
url: 'https://decoherence.itch.io/fire-maddness'
development: complete
status: playable
content: open
langs:
- Pascal
frameworks:
- Castle Game Engine
licenses:
- GPL3
added: '2024-11-12'
updated: '2024-11-12'
images:
- 'https://img.itch.zone/aW1hZ2UvMTUzNDUxLzcwMzI0Ni5wbmc=/original/i7aMe9.png'
- 'https://img.itch.zone/aW1hZ2UvMTUzNDUxLzcwMzI0Ny5wbmc=/original/RPmxMF.png'
- 'https://img.itch.zone/aW1hZ2UvMTUzNDUxLzcwMzI0OC5wbmc=/original/4SZ%2Bt4.png'
- 'https://img.itch.zone/aW1hZ2UvMTUzNDUxLzcwMzI0OS5wbmc=/original/6CJXSH.png'
video:
youtube: stu__95WIN4
- name: Fish Fillets NG
originals:
- Fish Fillets
type: remake
repo: 'https://sourceforge.net/projects/fillets/'
url: 'https://fillets.sourceforge.net/'
development: complete
status: playable
content: open
langs:
- C++
- Lua
frameworks:
- SDL
licenses:
- GPL2
info: Cross-platform port of the original game sources.
updated: 2022-05-05
images:
- 'https://upload.wikimedia.org/wikipedia/commons/9/91/Fillets-ng-cellar.png'
video:
youtube: EgJlCen3Sko
- name: Flappy Bird TIC Edition
originals:
- Flappy Bird
type: clone
url: 'https://tic.computer/play?cart=252'
development: complete
status: playable
content: free
langs:
- Lua
frameworks:
- TIC-80
licenses:
- As-is
updated: '2020-01-21'
images:
- 'https://tic.computer/cart/41eaf38786c4a34a832e631e190cd879/cover.gif'
info: source is available by closing the game and pressing Esc
- name: Flare
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: open
development: sporadic
originals:
- Diablo
status: playable
repo: https://github.com/flareteam/flare-game
type: clone
url: https://flarerpg.org
updated: 2022-08-20
images:
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_1.jpg
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_2.jpg
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_3.jpg
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_4.jpg
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_5.jpg
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_6.jpg
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_7.jpg
- https://flarerpg.org/wp-content/uploads/2018/03/empyrean_8.jpg
video:
youtube: OLrUYYulcss
- name: FlightGear
images:
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-140.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-086.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-039.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-117.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-115.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-114.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-017_0.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-597.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-070.jpg
- https://www.flightgear.org/wp-content/gallery/gallery-v2-10/fgfs-screen-092.jpg
langs:
- C++
licenses:
- GPL2
development: active
originals:
- Microsoft Flight Simulator
status: playable
repo: https://sourceforge.net/projects/flightgear/
type: clone
updated: 2022-08-20
url: https://www.flightgear.org/
- name: Fluid Table Tennis
originals:
- Plasma Pong
type: remake
repo: https://github.com/anirudhjoshi/fluid_table_tennis
url: https://anirudhjoshi.github.io/fluid_table_tennis/
development: complete
status: playable
multiplayer:
- Competitive
- Local
content: open
langs:
- JavaScript
licenses:
- MIT
updated: 2019-07-19
video:
youtube: gcF-ZenWEM4
- name: FOnline
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Fallout Online
status: unplayable
repo: https://github.com/hobwekiva/fonline
type: remake
updated: 2022-08-20
url: https://fodev.net/
- name: Football Manager
licenses:
- GPL2
langs:
- C
originals:
- Football Manager
status: unplayable
repo: https://github.com/autismuk/Football-Manager
development: halted
type: remake
updated: 2022-06-14
- name: The Force Engine
originals:
- Dark Forces
- Outlaws
type: remake
repo: https://github.com/luciusDXL/TheForceEngine
url: 'https://theforceengine.github.io/'
development: very active
status: playable
content: commercial
langs:
- C++
frameworks:
- OpenGL
- SDL2
licenses:
- GPL2
updated: 2023-11-23
images:
- 'https://theforceengine.github.io/screenshots/DarkForces1.jpg'
- 'https://theforceengine.github.io/screenshots/DarkForces2.jpg'
- 'https://theforceengine.github.io/screenshots/DarkForces3.jpg'
- 'https://theforceengine.github.io/screenshots/DarkForces4.jpg'
- 'https://theforceengine.github.io/screenshots/DarkForces5.jpg'
- name: Forge
langs:
- Java
frameworks:
- libGDX
licenses:
- GPL3
content: free
development: very active
originals:
- 'Magic: The Gathering Online'
repo: https://github.com/Card-Forge/forge
feed: https://github.com/Card-Forge/forge/releases.atom
status: playable
type: clone
url: https://github.com/Card-Forge/forge/wiki
updated: 2023-11-28
images:
- https://www.slightlymagic.net/forum/download/file.php?id=5121&mode=view
video:
youtube: TVIroBPwheU
- name: FPC Atomic
originals:
- Atomic Bomberman
type: remake
repo: 'https://github.com/PascalCorpsman/fpc_atomic'
development: very active
status: playable
multiplayer:
- Competitive
- Online
content: commercial
langs:
- Pascal
frameworks:
- Lazarus
licenses:
- Custom
- LGPL2
added: '2024-06-02'
updated: '2024-06-02'
- name: FQuake3
langs:
- F#
licenses:
- GPL2
development: halted
originals:
- Quake 3
status: unplayable
repo: https://github.com/TIHan/FQuake3
type: remake
updated: 2022-08-20
info: Attempted F# Implementation of id Software's Quake III Arena.
- name: Free Allegiance
images:
- https://www.freeallegiance.org/screenshots/CapitalShips/BelterCapsLaunchTogether.jpg
- https://www.freeallegiance.org/screenshots/CapitalShips/ICBattlecruisersResonateAleph.jpg
- https://www.freeallegiance.org/screenshots/Dogfights/BigGameVeryBusy.jpg
langs:
- C++
licenses:
- MIT
development: sporadic
originals:
- Allegiance
status: playable
repo: https://github.com/FreeAllegiance/Allegiance
type: remake
updated: 2022-08-20
url: https://www.freeallegiance.org/
video:
youtube: WcRmSt7Q_LA
- name: Free Hero Mesh
originals:
- 'MESH: Hero''s Hearts'
type: clone
repo: https://chiselapp.com/user/zzo38/repository/freeheromesh/
url: http://zzo38computer.org/freeheromesh/
development: active
status: playable
content: swappable
langs:
- C
frameworks:
- SDL
licenses:
- PD
info: 'A clone of MESH:Hero Hearts engine but also many new and improved features that the original game engine does not have.'
updated: 2022-07-01
- name: Free Heroes 2 - Enhanced
originals:
- Heroes of Might and Magic II
type: remake
repo: 'https://github.com/ciplogic/fheroes2enh'
development: halted
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
info: >-
Free Heroes 2 is an engine recreation of game Heroes 2 (of Might and Magic)
with UI and coding enhancements.
updated: '2020-10-29'
images:
- >-
https://raw.githubusercontent.com/ciplogic/fheroes2enh/master/docs/images/Fh2_semitransparent_dialogs.png
- >-
https://raw.githubusercontent.com/ciplogic/fheroes2enh/master/docs/images/UpdatedDialogs.png
video:
youtube: A8KwfSmW0G4
- name: Free in the Dark
langs:
- C
frameworks:
- SDL
- bgfx
licenses:
- GPL2
content: commercial
development: halted
originals:
- Alone in the Dark
- Alone in the Dark 2
- Alone in the Dark 3
- Jack in the Dark
status: semi-playable
repo: https://github.com/yaz0r/FITD
type: remake
updated: 2024-02-18
info: AITD1 should be completable with bugs; others are uncompletable
images:
- https://a.fsdn.com/con/app/proj/fitd/screenshots/10345.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/fitd/screenshots/10347.jpg/max/max/1
- name: freeablo
development: halted
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: commercial
originals:
- Diablo
repo: https://github.com/wheybags/freeablo
status: playable
type: remake
updated: 2023-05-22
video:
youtube: 1a4iOQpgudY
- name: freeaoe
development: halted
langs:
- C++
frameworks:
- SFML
licenses:
- GPL3
content: commercial
originals:
- Age of Empires II
images:
- https://raw.githubusercontent.com/sandsmark/freeaoe/master/doc/screenshot.png
- https://raw.githubusercontent.com/sandsmark/freeaoe/master/doc/homescreen.png
- https://raw.githubusercontent.com/sandsmark/freeaoe/master/doc/historyscreen.png
repo: https://github.com/sandsmark/freeaoe
status: semi-playable
type: remake
updated: 2023-11-24
info: 'Only thing missing to be playable is opponents (AI and/or multiplayer). The engine supports data from all Genie games
(Age of Empires 1, Star Wars: Galactic Battlegrounds, etc.), but the focus is on Age of Empires 2: The Conquerors.'
- name: FreeBlocks
frameworks:
- SDL2
images:
- https://i.imgur.com/XDBQy0o.png
- https://i.imgur.com/TryDIGI.png
- https://i.imgur.com/PysfvNR.png
langs:
- C
licenses:
- GPL3
development: halted
originals:
- Tetris Attack
repo: https://github.com/dorkster/freeblocks
status: playable
type: remake
updated: 2015-02-02
- name: Freeciv
images:
- https://upload.wikimedia.org/wikipedia/commons/5/55/Freeland2-big.png
- https://upload.wikimedia.org/wikipedia/commons/3/30/Freeland2-normal.png
- https://upload.wikimedia.org/wikipedia/commons/6/60/Freeciv_smg.png
- https://upload.wikimedia.org/wikipedia/commons/8/87/Freeciv2_1-beta1-zh.png
- https://upload.wikimedia.org/wikipedia/commons/0/00/Freeciv-no.png
- https://upload.wikimedia.org/wikipedia/commons/4/4d/Freeciv-2_1beta1.png
langs:
- C
frameworks:
- SDL2
licenses:
- GPL2
content: open
development: very active
originals:
- Civilization II
status: playable
repo: https://github.com/freeciv/freeciv
type: clone
updated: 2023-11-27
url: https://www.freeciv.org/
- name: Freeciv-web
info: web client for Freeciv
langs:
- JavaScript
- Java
licenses:
- AGPL3
- GPL3
development: very active
originals:
- Civilization II
status: playable
multiplayer:
- Online
repo: https://github.com/freeciv/freeciv-web
type: clone
url: https://www.freecivweb.org/
updated: 2023-01-23
images:
- https://raw.githubusercontent.com/freeciv/freeciv-web/develop/freeciv-web/src/main/webapp/javascript/webgl/freeciv-webgl.png
- https://raw.githubusercontent.com/freeciv/freeciv-web/develop/scripts/freeciv-web-screenshot.png
- name: Freeciv Alpha Centauri project
langs:
- C
licenses:
- GPL2
content: open
development: halted
originals:
- Sid Meier's Alpha Centauri
status: unplayable
repo: https://sourceforge.net/projects/freecivac/
type: remake
updated: 2022-03-28
url: https://freecivac.sourceforge.net/
- name: FreeCol
type: clone
originals:
- Sid Meier's Colonization
repo: https://github.com/FreeCol/freecol
url: https://www.freecol.org/
development: active
status: playable
langs:
- Java
licenses:
- GPL2
content: open
info: FreeCol is a turn-based strategy game based on the old game Colonization, and similar to Civilization. The objective of the game is to create an independent nation.
updated: 2023-03-09
images:
- https://www.freecol.org/images/screen-1.0.0.jpg
- https://www.freecol.org/images/screen-1.0.0-colopedia.jpg
- https://www.freecol.org/images/screen-1.0.0-map-editor.jpg
- https://www.freecol.org/images/screen-1.0.0-indian-advisor.jpg
- name: FreeCS
images:
- https://github.com/eukara/freecs/raw/master/img/preview1.jpg
- https://github.com/eukara/freecs/raw/master/img/preview2.jpg
- https://github.com/eukara/freecs/raw/master/img/preview3.jpg
- https://github.com/eukara/freecs/raw/master/img/preview4.jpg
langs:
- QuakeC
licenses:
- ISC
development: active
originals:
- Counter-Strike
status: playable
repo: https://github.com/eukara/freecs
type: remake
content: free
multiplayer:
- Online
- LAN
updated: 2022-09-01
info: FreeCS is a free-software reimplementation of Counter-Strike 1.5 running on the FTEQW engine.
- name: Freedoom
development: very active
images:
- https://freedoom.github.io/img/screenshots/phase1-0.12_02.png
- https://freedoom.github.io/img/screenshots/phase1-0.12_03.png
- https://freedoom.github.io/img/screenshots/phase1-0.12_04.png
- https://freedoom.github.io/img/screenshots/phase1-0.12_05.png
- https://freedoom.github.io/img/screenshots/phase1-0.12_06.png
- https://freedoom.github.io/img/screenshots/phase1-0.12_07.png
- https://freedoom.github.io/img/screenshots/phase1-0.12_08.png
content: open
licenses:
- BSD
originals:
- Doom
status: playable
repo: https://github.com/freedoom/freedoom
type: remake
updated: 2023-11-29
url: https://freedoom.github.io/
info: The Freedoom project aims to create a complete free content game based on the Doom engine
- name: FreedroidClassic
images:
- https://a.fsdn.com/con/app/proj/freedroid/screenshots/25826.jpg
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
content: open
development: complete
status: playable
originals:
- Paradroid
repo: https://github.com/ReinhardPrix/FreedroidClassic
type: remake
url: https://www.freedroid.org/
updated: 2021-03-08
- name: FreedroidRPG
images:
- https://codeberg.org/freedroid/freedroid-graphics/raw/branch/master/website/assets/screenshots/fighting_s.png
- https://codeberg.org/freedroid/freedroid-graphics/raw/branch/master/website/assets/screenshots/town_bar_s.png
- https://codeberg.org/freedroid/freedroid-graphics/raw/branch/master/website/assets/screenshots/in_the_wild_s.png
- https://codeberg.org/freedroid/freedroid-graphics/raw/branch/master/website/assets/screenshots/dialog_s.png
- https://codeberg.org/freedroid/freedroid-graphics/raw/branch/master/website/assets/screenshots/inventory_screen_s.png
langs:
- C
- Lua
frameworks:
- SDL2
licenses:
- GPL2
content: open
development: sporadic
originals:
- Paradroid
status: playable
repo: https://gitlab.com/freedroid/freedroid-src
type: similar
url: https://www.freedroid.org/
updated: 2023-12-01
- name: FreeFalcon
info: win32
langs:
- C++
licenses:
- BSD2
development: halted
status: playable
originals:
- Falcon
repo: https://github.com/FreeFalcon/freefalcon-central
type: clone
url: https://levelskip.com/simulation/Freefalcon-6-Combat-Flight-Simulator-Review-for-PC
updated: 2021-03-25
images:
- https://images.saymedia-content.com/.image/c_limit%2Ccs_srgb%2Cq_auto:good%2Cw_1240/MTc0MTkzMDAwNTQ3OTUyMTI0/freefalcon-6-combat-flight-simulator-review-for-pc.webp
- https://images.saymedia-content.com/.image/ar_3:2%2Cc_limit%2Ccs_srgb%2Cfl_progressive%2Cq_auto:good%2Cw_960/MTc0NDU2MTI2NjE4NzQwMDcy/freefalcon-6-combat-flight-simulator-review-for-pc.jpg
- https://images.saymedia-content.com/.image/ar_3:2%2Cc_limit%2Ccs_srgb%2Cfl_progressive%2Cq_auto:good%2Cw_960/MTc0NDU2MTI2NjE4ODcxMTQ0/freefalcon-6-combat-flight-simulator-review-for-pc.jpg
video:
youtube: bBf-trceMM0
- name: FreeFT
langs:
- C++
frameworks:
- SDL2
licenses:
- BSD
content: commercial
development: halted
originals:
- 'Fallout Tactics: Brotherhood of Steel'
status: semi-playable
repo: https://github.com/nadult/FreeFT
type: remake
updated: 2022-08-20
video:
vimeo: 91863672
- name: FreeGemas
development: sporadic
status: playable
frameworks:
- SDL2
images:
- https://raw.githubusercontent.com/JoseTomasTocino/freegemas/static/images/screenshot_1.png
langs:
- C++
licenses:
- GPL2
content: open
originals:
- Bejeweled
repo: https://github.com/JoseTomasTocino/freegemas
type: clone
updated: 2021-10-06
- name: freegish
development: sporadic
frameworks:
- SDL2
- OpenGL
images:
- https://upload.wikimedia.org/wikipedia/commons/f/f7/FreeGish_1-2.png
- https://upload.wikimedia.org/wikipedia/commons/0/00/FreeGish_1-5.png
langs:
- C
licenses:
- GPL2
- CC-BY-SA
content: open
originals:
- Gish
status: playable
repo: https://github.com/freegish/freegish
type: remake
updated: 2023-12-04
video:
youtube: FBgk5kSjn5M
- name: FreeHeroes
development: sporadic
frameworks:
- Qt
images:
- https://github.com/mapron/FreeHeroes/raw/c84877ca37c10476182a755cb64f836725dd2f5c/docs/en/images/battle_emulator.png
- https://github.com/mapron/FreeHeroes/raw/c84877ca37c10476182a755cb64f836725dd2f5c/docs/en/images/battle_widget.png
- https://github.com/mapron/FreeHeroes/raw/c84877ca37c10476182a755cb64f836725dd2f5c/docs/en/images/hero_dialog.png
info: FreeHeroes is free engine for Heroes of Might and Magic 3.
langs:
- C++
licenses:
- MIT
content: commercial
originals:
- Heroes of Might and Magic III
repo: https://github.com/mapron/FreeHeroes
status: unplayable
type: remake
updated: 2022-11-04
- name: FreeHL
images:
- https://github.com/eukara/freehl/raw/master/img/preview1.jpg
- https://github.com/eukara/freehl/raw/master/img/preview2.jpg
- https://github.com/eukara/freehl/raw/master/img/preview3.jpg
- https://github.com/eukara/freehl/raw/master/img/preview4.jpg
langs:
- QuakeC
licenses:
- ISC
development: active
originals:
- Half-Life
status: semi-playable
repo: https://github.com/eukara/freehl
type: remake
content: commercial
multiplayer:
- Online
- LAN
updated: 2022-09-01
info: FreeHL is a free-software reimplementation of Half-Life running on the FTEQW engine.
- name: Freekick 3
images:
- https://codeflow.files.wordpress.com/2012/12/2012-12-02_122257_6892124921.png
- https://codeflow.files.wordpress.com/2012/12/2012-12-02_123619_4607386701.png
langs:
- C++
frameworks:
- SDL
licenses:
- GPL3
content: free
development: halted
originals:
- Sensible World of Soccer
status: playable
repo: https://github.com/anttisalonen/freekick3
type: remake
updated: 2022-08-20
url: https://codeflow.wordpress.com/tag/sensible-soccer/
- name: FreeLords
langs:
- Java
licenses:
- GPL2
development: halted
originals:
- Warlords II
status: unplayable
repo: https://sourceforge.net/projects/freelords/
type: remake
updated: 2022-08-20
- name: Freenukum
langs:
- Rust
frameworks:
- SDL2
licenses:
- AGPL3
development: sporadic
originals:
- Duke Nukem
status: semi-playable
repo: https://gitlab.com/silwol/freenukum/
type: remake
updated: 2021-09-16
images:
- https://gitlab.com/silwol/freenukum/-/wikis/uploads/df874d90278b7f5e36fa59e7589367c5/Screenshot_from_2020-12-15_18-46-59.png
- https://gitlab.com/silwol/freenukum/-/wikis/uploads/30ccdcac74df6c0b854a19bfe50562b2/Screenshot_from_2020-12-15_18-53-56.png
- https://gitlab.com/silwol/freenukum/-/wikis/uploads/e4c98e639f236fcacc632784cf5b658a/Screenshot_from_2020-12-15_18-58-16.png
info: Originally written in C, rewritten in Rust
- name: FreeOrion
development: active
images:
- https://www.freeorion.org/images/8/82/Galaxy_Map_AIs_SVN3100.png
- https://www.freeorion.org/images/1/14/Design_Screen_SVN3097.png
- https://www.freeorion.org/images/a/ab/FreeOrion3215_Galaxy_Map.png
langs:
- C++
- Python
frameworks:
- SDL
- OpenGL
licenses:
- GPL2
- CC-BY-SA
content: open
status: playable
originals:
- Master of Orion
- Master of Orion 2
repo: https://github.com/freeorion/freeorion
type: similar
url: https://www.freeorion.org/index.php/Main_Page
updated: 2021-03-31
video:
youtube: 2atHnYAFQgU
- name: FreePrince
langs:
- C
licenses:
- GPL2