-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathh.yaml
More file actions
1438 lines (1369 loc) · 35.6 KB
/
h.yaml
File metadata and controls
1438 lines (1369 loc) · 35.6 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: H-Craft Championship
langs:
- C++
frameworks:
- SDL
licenses:
- Zlib
content: open
development: halted
originals:
- Wipeout
status: playable
repo: https://github.com/mzeilfelder/hc1
type: clone
updated: 2022-08-29
url: http://www.irrgheist.com/games.htm
video:
youtube: JW-WDZDI7Sc
- name: h2048
originals:
- '2048'
type: clone
repo: 'https://github.com/Javran/h2048'
url: 'https://hackage.haskell.org/package/h2048'
feed: 'https://hackage.haskell.org/package/h2048.rss'
development: halted
status: playable
langs:
- Haskell
frameworks:
- brick
licenses:
- MIT
added: 2025-10-03
updated: 2025-10-03
images:
- 'https://raw.githubusercontent.com/Javran/h2048/master/doc/simple.jpg'
- 'https://raw.githubusercontent.com/Javran/h2048/master/doc/brick.jpg'
- name: Habitat
originals:
- Habitat
type: remake
repo: 'https://github.com/Museum-of-Art-and-Digital-Entertainment/habitat'
url: 'https://web.archive.org/web/20170222232344/https://www.themade.org/posts/1701'
development: halted
status: playable
multiplayer:
- Online
content: open
langs:
- Assembly
- C
- Perl
licenses:
- MIT
added: 2026-01-06
updated: 2026-01-06
images:
- https://web.archive.org/web/20170224121100im_/https://themade.org/wp-content/uploads/2014/09/hab2.jpg
- name: Hacman
langs:
- JavaScript
licenses:
- ISC
development: halted
originals:
- Pac-Man
status: playable
repo: https://github.com/snozza/pacman
type: remake
updated: 2022-10-28
info: multiplayer Pac-Man
multiplayer:
- Online
- name: Hagar the Horrible Commodore 64 Source Code
originals:
- Hägar the Horrible
type: official
repo: 'https://github.com/commercial-game-sources/hagar_the_horrible'
url: >-
https://archive.org/details/hagar-the-horrible-c-64-kingsoft-1992-source-code.-7z
development: complete
status: playable
langs:
- Assembly
licenses:
- As-is
added: 2026-03-13
updated: 2026-03-13
- name: Haiku 2048
originals:
- '2048'
type: clone
repo: 'https://github.com/HaikuArchives/Haiku2048'
feed: 'https://github.com/HaikuArchives/Haiku2048/releases.atom'
development: halted
status: playable
content: open
langs:
- C++
licenses:
- MIT
info: Clone of the popular 2048 game for Haiku OS.
added: 2025-08-20
updated: 2025-08-20
images:
- >-
https://raw.githubusercontent.com/HaikuArchives/Haiku2048/master/screenshot1.png
- name: Halloween 3D
originals:
- 'Halloween: The New Nightmare'
type: remake
repo: 'https://github.com/brizzly/Halloween3D'
url: 'https://daemonforums.org/showthread.php?t=11914'
development: active
status: playable
content: free
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
added: 2026-01-10
updated: 2026-01-10
video:
youtube: NV0X2O-RyTU
- name: Hammer of Thyrion
images:
- https://a.fsdn.com/con/app/proj/uhexen2/screenshots/320847.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/uhexen2/screenshots/9153.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/uhexen2/screenshots/320817.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/uhexen2/screenshots/01.png/max/max/1
- https://a.fsdn.com/con/app/proj/uhexen2/screenshots/284891.jpg/max/max/1
langs:
- C
frameworks:
- OpenGL
- SDL
licenses:
- GPL2
content: commercial
development: active
originals:
- Hexen II
status: playable
repo: https://sourceforge.net/projects/uhexen2/
type: remake
updated: 2021-05-18
url: https://uhexen2.sourceforge.net/
- name: Hardwar
langs:
- C++
frameworks:
- OGRE
licenses:
- GPL3
development: halted
status: unplayable
originals:
- Hardwar
repo: https://github.com/andrewfenn/Hardwar
type: remake
updated: 2020-12-28
url: https://www.hardwar.org/
- name: Harold
development: halted
langs:
- TypeScript
- Python
licenses:
- Apache
content: commercial
originals:
- Fallout 2
status: semi-playable
repo: https://github.com/OldGamesLab/Harold
type: remake
updated: 2024-02-22
images:
- https://raw.githubusercontent.com/OldGamesLab/Harold/main/screenshot.png
- name: Harvest Moon 2.0
originals:
- Story of Seasons series
status: semi-playable
type: clone
repo: 'https://github.com/Kenny-Haworth/Harvest-Moon-2.0'
development: halted
content: free
langs:
- GDScript
frameworks:
- Godot
licenses:
- MIT
updated: 2022-08-29
images:
- https://raw.githubusercontent.com/Kenny-Haworth/Harvest-Moon-2.0/master/Screenshots/Crops.png
- https://raw.githubusercontent.com/Kenny-Haworth/Harvest-Moon-2.0/master/Screenshots/Forest.png
- https://raw.githubusercontent.com/Kenny-Haworth/Harvest-Moon-2.0/master/Screenshots/Night%20Time.png
- https://raw.githubusercontent.com/Kenny-Haworth/Harvest-Moon-2.0/master/Screenshots/Shop.png
- https://raw.githubusercontent.com/Kenny-Haworth/Harvest-Moon-2.0/master/Screenshots/Inside%20Home.png
- https://raw.githubusercontent.com/Kenny-Haworth/Harvest-Moon-2.0/master/Screenshots/Caves.png
video:
youtube: iA4lOiYS2s8
- name: haskanoid
originals:
- Breakout
type: clone
repo: 'https://github.com/ivanperez-keera/haskanoid'
url: 'https://hackage.haskell.org/package/haskanoid'
feed: 'https://github.com/ivanperez-keera/haskanoid/releases.atom'
development: halted
status: semi-playable
content: free
langs:
- Haskell
frameworks:
- SDL
licenses:
- BSD
- CC-BY-NC-SA
added: 2025-08-17
updated: 2025-08-17
images:
- >-
https://raw.githubusercontent.com/ivanperez-keera/haskanoid/refs/heads/develop/screenshots/android.gif
- >-
https://raw.githubusercontent.com/ivanperez-keera/haskanoid/refs/heads/develop/screenshots/android.png
- >-
https://raw.githubusercontent.com/ivanperez-keera/haskanoid/refs/heads/develop/screenshots/desktop.png
- name: HashCon
originals:
- Galcon
type: clone
repo: https://github.com/BXL909/HASHCON
url: https://bxl909.github.io/HASHCON/
development: complete
status: playable
content: open
langs:
- JavaScript
licenses:
- As-is
added: 2025-10-06
updated: 2025-10-06
images:
- https://github.com/BXL909/HashCon/raw/main/card.png?raw=true
- name: Haskelloids
originals:
- Asteroids
type: clone
repo: 'https://github.com/keera-studios/Haskelloids'
url: 'https://hackage.haskell.org/package/Haskelloids'
feed: 'https://hackage.haskell.org/package/Haskelloids.rss'
development: halted
status: semi-playable
content: open
langs:
- Haskell
licenses:
- BSD
added: 2025-10-06
updated: 2025-10-06
- name: Hatman
originals:
- Pac-Man
type: clone
repo: >-
https://www.ibiblio.org/pub/micro/pc-stuff/Linux/games/arcade/pacman/#:~:text=hatman
url: >-
https://web.archive.org/web/20090710041645/https://www.linuxlots.com/~hatsoft/hatman/
development: halted
status: playable
content: open
langs:
- C++
frameworks:
- SVGALib
licenses:
- GPL2
added: 2025-10-25
updated: 2025-10-25
images:
- 'https://happypenguin.altervista.org/screenshots/hatman.gif'
- name: Haxima
originals:
- 'Ultima V: Warriors of Destiny'
type: clone
repo: 'https://sourceforge.net/projects/nazghul/'
url: >-
https://web.archive.org/web/20130402222926/https://myweb.cableone.net/gmcnutt/nazghul.html
feed: 'https://sourceforge.net/projects/nazghul/rss?path=/nazghul'
development: halted
status: playable
content: open
langs:
- C++
- C
frameworks:
- SDL
licenses:
- GPL2
info: Haxima is the first full-featured game built with the nazghul engine.
added: 2025-06-26
updated: 2025-06-26
images:
- >-
https://web.archive.org/web/20130402222926im_/https://myweb.cableone.net/gmcnutt/haxima.png
- >-
https://web.archive.org/web/20130402225135im_/http://myweb.cableone.net/gmcnutt/screenshots/cave_shrine.jpg
- >-
https://web.archive.org/web/20130402225135im_/http://myweb.cableone.net/gmcnutt/screenshots/ratling_warren.jpg
- >-
https://a.fsdn.com/con/app/proj/nazghul/screenshots/Screenshot%20from%202014-04-07%2008%3A56%3A05.png
- >-
https://a.fsdn.com/con/app/proj/nazghul/screenshots/Screenshot%20from%202014-04-07%2008%3A58%3A08.png
- >-
https://a.fsdn.com/con/app/proj/nazghul/screenshots/Screenshot%20from%202014-04-07%2008%3A57%3A25.png
- >-
https://a.fsdn.com/con/app/proj/nazghul/screenshots/Screenshot%20from%202014-04-07%2008%3A56%3A50.png
- name: Hexen for Linux
originals:
- Hexen
type: remake
repo: 'https://www.ibiblio.org/pub/Linux/games/#:~:text=linux-hexen'
url: 'https://www.ibiblio.org/pub/Linux/games/linux-hexen-0.99.lsm'
development: halted
status: playable
content: swappable
langs:
- C
frameworks:
- SVGALib
licenses:
- GPL2
added: 2025-11-06
updated: 2025-11-06
- name: Honey Town
info: Harvest Moon (SNES) remake for UWP and Xbox One.
langs:
- C#
frameworks:
- MonoGame
licenses:
- GPL3
development: halted
originals:
- Story of Seasons series
repo: https://github.com/Greentwip/HoneyTown
status: semi-playable
type: remake
updated: 2024-02-23
- name: HauntedHouse
langs:
- ActionScript
licenses:
- As-is
development: complete
originals:
- Haunted House
status: playable
repo: https://github.com/KunoNoOni/HauntedHouse
type: remake
updated: 2022-08-29
- name: Head over Heels
type: remake
langs:
- C++
frameworks:
- Allegro
originals:
- Head over Heels
repo: 'https://github.com/dougmencken/HeadOverHeels'
status: playable
development: active
licenses:
- GPL3
content: open
info: Originated from the remake by Jorge Rodríguez Santos
updated: '2023-10-25'
images:
- https://raw.githubusercontent.com/dougmencken/HeadOverHeels/master/gamedata/gfx/gui.gfx/head.gif
- https://raw.githubusercontent.com/dougmencken/HeadOverHeels/master/gamedata/gfx/gui.gfx/heels.gif
- https://user-images.githubusercontent.com/3457110/49519576-38b6f800-f899-11e8-9066-7a75f6285a9e.png
- https://user-images.githubusercontent.com/3457110/275205173-1fa6287a-54ec-43e4-bff9-c6a3107c0208.gif
- name: Head over Heels 2
langs:
- C++
licenses:
- GPL2
frameworks:
- Allegro
development: complete
originals:
- Head over Heels
status: playable
type: remake
updated: 2022-08-29
url: https://www.headoverheels2.com/drupal/en/
images:
- https://headoverheels2.com/drupal/sites/default/files/images/safari01.png
- https://headoverheels2.com/drupal/sites/default/files/images/egyptus01.png
- https://headoverheels2.com/drupal/sites/default/files/images/byblos03.png
- https://headoverheels2.com/drupal/sites/default/files/images/egyptus02.png
- https://headoverheels2.com/drupal/sites/default/files/images/byblos01.png
- https://headoverheels2.com/drupal/sites/default/files/images/moonbase01.png
- name: Heart of the Alien Redux
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
content: commercial
development: halted
originals:
- 'Another World 2: Heart of the Alien'
status: playable
repo: https://github.com/carstene1ns/hota-redux
type: remake
updated: 2021-09-23
url: https://hota.sourceforge.net/
images:
- https://hota.sourceforge.net/screenshots/room2-win32.png
- https://hota.sourceforge.net/screenshots/scale3x-win32.png
- https://hota.sourceforge.net/screenshots/hota-amigaos.jpg
video:
youtube: VLLfticgh6E
- name: 'Heavy Metal: F.A.K.K. 2'
originals:
- 'Heavy Metal: F.A.K.K. 2'
type: official
repo: 'https://github.com/Sporesirius/fakk2'
development: complete
status: playable
content: commercial
langs:
- C++
frameworks:
- id Tech 3
licenses:
- Custom
added: 2025-11-16
updated: 2025-11-16
- name: Hedgewars
frameworks:
- SDL
- Qt
images:
- https://hedgewars.org/files/fck_upload/image/screenshots/0_9_15-main-menu_s.png
- https://hedgewars.org/files/fck_upload/image/screenshots/0_9_15-christmas_s.png
- https://hedgewars.org/files/fck_upload/image/screenshots/0_9_15-nature_s.png
- https://hedgewars.org/images/screenshots/hedgewars-0.9.6-001_s.png
langs:
- Lua
- C
- C++
- Pascal
- Haskell
licenses:
- GPL2
development: active
originals:
- Worms Series
status: playable
repo: https://hg.hedgewars.org/hedgewars/
type: clone
updated: 2019-06-07
url: https://hedgewars.org/
- name: Helion
originals:
- Doom
type: remake
repo: 'https://github.com/Helion-Engine/Helion'
feed: 'https://github.com/Helion-Engine/Helion/releases.atom'
development: very active
status: playable
content: commercial
langs:
- 'C#'
frameworks:
- .NET
licenses:
- GPL3
info: A modern Doom engine written from the ground up with a focus on performance.
added: '2024-09-10'
updated: '2024-09-10'
images:
- 'https://i.imgur.com/YBQJAc2.png'
- 'https://i.imgur.com/WfNu68M.png'
- 'https://i.imgur.com/lrksM1C.png'
- 'https://i.imgur.com/iA4bVzs.png'
- 'https://i.imgur.com/dVbYPg4.png'
- 'https://i.imgur.com/XyD6UA2.png'
- 'https://i.imgur.com/1w9t5N1.png'
- name: Help Hannah's Horse!
originals:
- Fast Food
type: clone
repo: 'https://sourceforge.net/projects/hannah/'
url: 'https://retrojunkies.co.uk/welsh/home/index/91'
feed: 'https://sourceforge.net/p/hannah/news/feed.rss'
development: complete
status: playable
content: open
langs:
- C++
frameworks:
- SDL
licenses:
- GPL3
added: 2025-10-18
updated: 2025-10-18
images:
- 'https://a.fsdn.com/con/app/proj/hannah/screenshots/Menu-2.0.png'
- 'https://a.fsdn.com/con/app/proj/hannah/screenshots/Fog-2.0.png'
- 'https://a.fsdn.com/con/app/proj/hannah/screenshots/title.png'
- 'https://a.fsdn.com/con/app/proj/hannah/screenshots/level1_2.png'
- 'https://a.fsdn.com/con/app/proj/hannah/screenshots/level3.png'
- 'https://a.fsdn.com/con/app/proj/hannah/screenshots/hiscore.png'
- name: Hematite
images:
- https://raw.githubusercontent.com/PistonDevelopers/hematite/master/screenshot.png
langs:
- Rust
frameworks:
- Piston
licenses:
- MIT
content: commercial
development: halted
originals:
- Minecraft
status: unplayable
repo: https://github.com/PistonDevelopers/hematite
type: remake
updated: 2024-02-24
url: https://hematite.piston.rs/
info: Hematite is a project aiming to implement Minecraft in Rust.
- name: Heretic
originals:
- Heretic
type: official
repo: 'https://github.com/OpenSourcedGames/Heretic'
url: 'https://archive.org/details/Heretic_source'
development: complete
status: playable
multiplayer:
- LAN
content: commercial
langs:
- C++
licenses:
- GPL2
added: 2025-12-20
updated: 2025-12-20
- name: Hero Quest
originals:
- HeroQuest
type: official
repo: 'https://github.com/RetailGameSourceCode/HeroQuest'
url: 'https://www.romhacking.net/documents/557/'
development: complete
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
added: 2025-12-16
updated: 2025-12-16
images:
- 'https://www.romhacking.net/translations/nes/images/titles/1590titlescreen.png'
- name: Heroes
originals:
- Tron
type: similar
repo: 'https://sourceforge.net/projects/heroes/'
url: 'https://heroes.sourceforge.net/'
feed: 'https://sourceforge.net/p/heroes/news/feed.rss'
development: halted
status: playable
content: open
langs:
- C
licenses:
- GPL2
added: 2025-07-30
updated: 2025-07-30
images:
- 'https://heroes.sourceforge.net/img/snap1.png'
- 'https://heroes.sourceforge.net/img/snap2.png'
- 'https://heroes.sourceforge.net/img/snap3.png'
- 'https://heroes.sourceforge.net/img/snap4.png'
- 'https://heroes.sourceforge.net/img/snap5.png'
- name: Heroes of Civilizations
images:
- https://raw.githubusercontent.com/francot514/CivHeroes/master/preview.png
licenses:
- GPL2
content: free
langs:
- C++
frameworks:
- Irrlicht
development: halted
originals:
- Yu-Gi-Oh!
status: playable
repo: https://github.com/francot514/CivHeroes
type: clone
updated: 2022-08-29
- name: Heroes Of JinYong
originals:
- Heroes of Jin Yong
type: remake
repo: 'https://github.com/soarqin/HeroesOfJinYong'
feed: 'https://github.com/soarqin/HeroesOfJinYong/releases.atom'
development: halted
status: playable
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
added: 2026-03-10
updated: 2026-03-10
- name: Herzog 3D
licenses:
- GPL2
development: halted
originals:
- Herzog Zwei
status: unplayable
repo: https://sourceforge.net/projects/herzog3d/
type: clone
updated: 2022-08-29
url: https://herzog3d.sourceforge.net/
images:
- https://herzog3d.sourceforge.net/images/hz_1.jpeg
- https://herzog3d.sourceforge.net/images/hz_2.jpeg
- https://herzog3d.sourceforge.net/images/hz_3.jpeg
- https://herzog3d.sourceforge.net/images/hz_4.jpeg
- name: Hexen
originals:
- Hexen
type: official
repo: 'https://github.com/OpenSourcedGames/Hexen'
url: https://archive.org/details/Hexen_source
development: complete
status: playable
multiplayer:
- LAN
content: commercial
langs:
- C
frameworks:
- id Tech 1
licenses:
- GPL2
added: 2025-12-11
updated: 2025-12-28
- name: Hexen 2
originals:
- Hexen II
type: official
repo: 'https://github.com/videogamepreservation/hexen2'
url: >-
https://web.archive.org/web/20091221020510/http://archive.gamespy.com/news/november00/hexen2/
development: complete
status: playable
multiplayer:
- Local
- Online
content: commercial
langs:
- C
frameworks:
- id Tech 2
licenses:
- GPL2
added: 2025-12-11
updated: 2025-12-11
images:
- https://web.archive.org/web/20110905130531im_/http://archive.gamespy.com/news/november00/hexen2/h2.jpg
- name: Hexen II for Dreamcast
originals:
- Hexen II
type: remake
repo: 'https://github.com/Shockblast/hexen2-dreamcast'
url: 'https://dcquake.sourceforge.net/#hexen2'
feed: 'https://github.com/Shockblast/hexen2-dreamcast/releases.atom'
development: halted
status: semi-playable
content: commercial
langs:
- C
frameworks:
- OpenGL
licenses:
- GPL2
added: 2026-03-05
updated: 2026-03-05
images:
- 'https://dcquake.sourceforge.net/glhexen2.jpg'
- name: HexGL
frameworks:
- WebGL
licenses:
- MIT
content: open
development: halted
originals:
- Wipeout
status: playable
repo: https://github.com/BKcore/HexGL
type: clone
updated: 2022-08-12
url: https://hexgl.bkcore.com/
video:
youtube: se-oorr2zM8
- name: Hexoshi
type: clone
originals:
- Super Metroid
repo: https://github.com/hexoshi/hexoshi
url: https://hexoshi.github.io
development: sporadic
status: playable
langs:
- Python
licenses:
- GPL3
content: open
updated: 2024-02-26
images:
- https://hexoshi.github.io/screenshots/screenshot1.png
- https://hexoshi.github.io/screenshots/screenshot2.png
- https://hexoshi.github.io/screenshots/screenshot3.png
- https://hexoshi.github.io/screenshots/screenshot4.png
- https://hexoshi.github.io/screenshots/screenshot5.png
- https://hexoshi.github.io/screenshots/screenshot6.png
- https://hexoshi.github.io/screenshots/screenshot7.png
- https://hexoshi.github.io/screenshots/screenshot8.png
- https://hexoshi.github.io/screenshots/screenshot9.png
- https://hexoshi.github.io/screenshots/screenshot10.png
- https://hexoshi.github.io/screenshots/screenshot11.png
- https://hexoshi.github.io/screenshots/screenshot12.png
- https://hexoshi.github.io/screenshots/screenshot13.png
- name: Hextris
langs:
- JavaScript
licenses:
- GPL3
content: open
development: halted
originals:
- Tetris
status: playable
repo: https://github.com/Hextris/Hextris
type: clone
updated: 2024-02-27
url: https://hextris.github.io/
video:
youtube: KyOkwXcEZgI
- name: Hexy Mines
originals:
- Minesweeper
type: similar
repo: 'https://os4depot.net/?function=showfile&file=game/puzzle/hexymines.lha'
url: >-
https://web.archive.org/web/20090321171154/http://www.petergordon.org.uk/readme.php?file=files/hexymines.txt
development: halted
status: semi-playable
content: free
langs:
- C
frameworks:
- SDL
licenses:
- As-is
added: 2025-11-01
updated: 2025-11-01
- name: Hishigata
originals:
- Project Rhombus
type: clone
repo: 'https://github.com/LumpBloom7/hishigata'
development: sporadic
status: playable
content: open
langs:
- 'C#'
frameworks:
- osu!framework
licenses:
- MIT
info: Project Rhombus-clone for osu! ruleset
updated: '2023-04-16'
- name: Historyline
images:
- https://conquertheworldbycode.files.wordpress.com/2013/10/movement.png
- https://conquertheworldbycode.files.wordpress.com/2013/10/screen.png
langs:
- C#
frameworks:
- Unity
licenses:
- As-is
development: halted
originals:
- 'History Line: 1914-1918'
status: unplayable
repo: https://github.com/oliverdb/Historyline
type: remake
updated: 2022-08-29
url: https://conquertheworldbycode.wordpress.com/nostalgia-2/
- name: HiveWE
langs:
- C++
licenses:
- AGPL3
content: commercial
development: active
originals:
- Warcraft III
repo: https://github.com/stijnherfst/HiveWE
type: tool
updated: 2025-11-05
added: 2025-11-05
url: https://www.hiveworkshop.com/threads/introducing-hivewe.303183/
info: HiveWE is a Warcraft III World Editor (WE) that focuses on speed and ease of use.
status: N/A
images:
- https://raw.githubusercontent.com/stijnherfst/HiveWE/refs/heads/main/Screenshots/HiveWE.png
- https://raw.githubusercontent.com/stijnherfst/HiveWE/refs/heads/main/Screenshots/ObjectEditor.png
- https://raw.githubusercontent.com/stijnherfst/HiveWE/refs/heads/main/Screenshots/PathingEditing.png
- https://www.hiveworkshop.com/data/ratory-images/364/364062-a0fc8e5fcb06ebc09d32735ce44d357a.png
- name: hobbitgfx
langs:
- JavaScript
licenses:
- As-is
content: commercial
development: halted
originals:
- The Hobbit
repo: https://github.com/richcarl/hobbitgfx
type: tool
status: N/A
updated: 2022-01-15
url: https://richardcarlsson.blogspot.co.uk/2014/11/the-hobbit-1982-game-graphics-engine-in.html
info: This implements the graphics engine from the 1982 text adventure game The Hobbit
- name: Hocoslamfy
frameworks:
- SDL
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Flappy Bird
status: playable
repo: https://github.com/Nebuleon/hocoslamfy
type: remake
updated: 2022-08-29
video:
youtube: rPWK6kO3D0M
- name: hode
langs:
- C++
licenses:
- As-is
content: commercial
development: sporadic
originals:
- Heart of Darkness
status: playable
url: http://cyxdown.free.fr/hode/
repo: https://github.com/usineur/hode
type: remake
updated: 2022-08-29
video:
youtube: avtU8ng4QRE
- name: Home-alone-2-NES
originals:
- 'Home Alone 2: Lost in New York'
type: official
repo: 'https://github.com/gondur/Home-alone-2-NES'
url: 'https://frds.github.io/home-alone-2-nes-source-code/'
development: complete
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
added: 2026-01-27
updated: 2026-01-27
video:
youtube: cqsCqG-uako
- name: Homeworld
originals:
- Homeworld
type: official
repo: 'https://github.com/videogamepreservation/homeworld'
url: >-
https://web.archive.org/web/20131012012745/http://www.insidemacgames.com/news/story.php?ArticleID=8516
development: complete
status: playable
content: commercial
langs:
- C
licenses:
- Custom
added: 2025-11-16
updated: 2025-11-16
- name: Hopson-Arcade
originals:
- Space Invaders
type: remake
repo: https://github.com/Hopson97/Hopson-Arcade
development: halted
status: playable
content: open
langs:
- C++
frameworks:
- SFML
licenses:
- GPL3
info: Bunch of small arcade games made in C++ and SFML
updated: 2024-02-28
images:
- https://i.imgur.com/b7KAzXo.png
video:
youtube: MkpxwsybNPo
- name: Horacio Esquiador
originals:
- Horace Goes Skiing
type: remake
url: https://computeremuzone.com/ficha/710/horacio-esquiador&l=en
development: halted
status: playable
content: free
langs: