-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathw.yaml
More file actions
1761 lines (1676 loc) · 42.9 KB
/
w.yaml
File metadata and controls
1761 lines (1676 loc) · 42.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: W.R. Hutsell's Civil War Battleset
originals:
- Civil War Battleset
type: official
repo: 'https://github.com/Hutsell-Games/civil-war-battleset'
development: complete
status: playable
content: open
langs:
- BASIC
licenses:
- MIT
added: 2026-01-24
updated: 2026-01-24
images:
- https://hutsellgames.com/wp-content/uploads/2011/04/egascreenshot.jpg
- name: W.R. Hutsell's Civil War Strategy Game
originals:
- Civil War Strategy
type: remake
repo: 'https://github.com/Hutsell-Games/civil-war-strategy'
url: >-
https://hutsellgames.com/2022/04/18/civil-war-strategy-1-6-releases-and-looking-for-testers/
development: halted
status: playable
multiplayer:
- Competitive
content: open
langs:
- BASIC
licenses:
- MIT
info: Also includes the original DOS source code.
added: 2026-01-24
updated: 2026-01-24
images:
- https://raw.githubusercontent.com/Hutsell-Games/civil-war-strategy/main/dev/cws-screenshot.png
- name: W.R. Hutsell's Wars of Napoleon Game
originals:
- Wars of Napoleon
type: official
repo: 'https://github.com/Hutsell-Games/wars-of-napoleon'
development: complete
status: playable
content: open
langs:
- BASIC
licenses:
- MIT
added: 2026-01-24
updated: 2026-01-24
images:
- 'https://hutsellgames.com/wp-content/uploads/2011/04/wonscreenshot.jpg'
- name: W.R. Hutsell's World War 2 In Western Europe Game
originals:
- World War II In Western Europe
type: official
repo: 'https://github.com/Hutsell-Games/world-war-2'
development: complete
status: playable
multiplayer:
- Competitive
content: open
langs:
- BASIC
licenses:
- MIT
added: 2026-01-24
updated: 2026-01-24
images:
- 'https://hutsellgames.com/wp-content/uploads/2011/04/ww2screenshot.jpg'
- name: WAGE
originals:
- World Builder
type: remake
repo: 'https://github.com/asvitkine/wage-engine'
development: halted
status: playable
content: commercial
langs:
- Java
licenses:
- MIT
info: A source port for World Builder engine games.
updated: 2022-04-06
images:
- https://raw.githubusercontent.com/asvitkine/wage-engine/master/screenshots/startrek.png
- name: Walic
originals:
- Gwent
type: clone
repo: 'https://gitlab.com/mohofobodaktyl/mwalic'
development: halted
status: playable
multiplayer:
- Online
- LAN
langs:
- Kotlin
frameworks:
- libGDX
licenses:
- Apache
content: open
info: Clone of beta
updated: 2021-04-09
images:
- https://gitlab.com/mohofobodaktyl/mwalic/-/raw/master/Img/game.png
- name: The Wall
originals:
- Tetris
type: clone
url: >-
https://web.archive.org/web/20090221032744/http://dwarfcity.co.uk/games/thewall.php
development: halted
status: playable
langs:
- C++
licenses:
- As-is
added: 2025-11-21
updated: 2025-11-21
images:
- https://web.archive.org/web/20070919142855if_/http://dwarfcity.co.uk/images/TheWall_ScreenShot_Main.jpg
- https://web.archive.org/web/20070919142926if_/http://dwarfcity.co.uk/images/TheWall_ScreenShot_GameOver.jpg
- https://web.archive.org/web/20070919142907if_/http://dwarfcity.co.uk/images/TheWall_ScreenShot_HighScore.jpg
- name: WallBall
originals:
- JezzBall
type: clone
repo: https://github.com/plainsightcollection/plainsightcollection.github.io
url: http://montrose.is/#wallball
development: complete
status: playable
content: open
langs:
- Haxe
frameworks:
- Starling
licenses:
- GPL3
info: Besides being playable on the development website, the game is available as a bookmarklet that lets it masquerade
as a pop-up ad on most commercial websites.
updated: 2019-07-17
images:
- https://raw.githubusercontent.com/plainsightcollection/plainsightcollection.github.io/master/web/resources/jpg/20170813_wallball.jpg
video:
youtube: n9ALgxcTBU0
- name: wanderer
originals:
- Project Nomads
type: remake
repo: 'https://github.com/vinceh121/wanderer'
development: halted
status: semi-playable
content: commercial
langs:
- Java
frameworks:
- libGDX
licenses:
- AGPL3
added: 2025-12-12
updated: 2025-12-12
images:
- 'https://i.vinceh121.me/oKcZBvsC.png'
- name: Wanderer
originals:
- Boulder Dash
type: clone
repo: 'https://github.com/sshipway/wanderer'
url: 'https://www.steveshipway.org/software/wanderer/f_wanderer.html'
development: halted
status: playable
content: open
langs:
- C
licenses:
- GPL2
added: 2025-09-17
updated: 2025-09-17
images:
- 'https://www.e271.net/~marina/wanderer.jpg'
- 'https://www.e271.net/~marina/wanderer-screen1-unmap.jpg'
- 'https://www.e271.net/~marina/wanderer-screen2.jpg'
- name: WangGDX
originals:
- Shadow Warrior
type: remake
repo: https://gitlab.com/m210/wanggdx
url: 'https://m210.duke4.net/'
feed: https://gitlab.com/m210/wanggdx.atom
development: sporadic
status: playable
content: commercial
langs:
- Java
frameworks:
- libGDX
licenses:
- GPL3
added: 2025-08-02
updated: 2025-08-02
video:
youtube: IaAUGs_3JJA
- name: War Pong
originals:
- Pong
type: clone
repo: 'https://sourceforge.net/projects/warpong/'
url: 'https://warpong.sourceforge.net/'
feed: 'https://sourceforge.net/p/warpong/news/feed.atom'
development: halted
status: playable
content: open
langs:
- C++
- BlitzBasic
licenses:
- GPL2
info: >-
The repository contains two games: War Pong HD (written in C++) and its
predecessor War Pong (written in Blitz BASIC).
added: 2025-11-01
updated: 2025-11-01
images:
- 'https://a.fsdn.com/con/app/proj/warpong/screenshots/95306.jpg'
- 'https://a.fsdn.com/con/app/proj/warpong/screenshots/122960.jpg'
- 'https://a.fsdn.com/con/app/proj/warpong/screenshots/96268.jpg'
- 'https://a.fsdn.com/con/app/proj/warpong/screenshots/93229.jpg'
- name: War Thunder
originals:
- War Thunder
type: official
repo: 'https://github.com/GaijinEntertainment/DagorEngine'
feed: 'https://github.com/GaijinEntertainment/DagorEngine/releases.atom'
development: active
status: playable
multiplayer:
- Competitive
- Online
content: commercial
langs:
- C++
frameworks:
- FMOD
- OpenXR
licenses:
- BSD
info: Dagor Engine and Tools source code from Gaijin Games KFT
updated: '2023-11-12'
images:
- >-
https://uploads.golmedia.net/uploads/articles/article_media/9368082791698855425gol1.jpg
- name: War Worlds
originals:
- War Worlds
type: official
repo: 'https://github.com/codeka/wwmmo'
url: 'https://www.war-worlds.com/blog/2014/08/war-worlds-is-shutting-down'
feed: 'https://github.com/codeka/wwmmo/releases.atom'
development: halted
status: playable
multiplayer:
- Online
content: free
langs:
- Kotlin
licenses:
- Custom
added: 2025-11-23
updated: 2025-11-23
- name: War1
originals:
- 'Warcraft: Orcs & Humans'
type: remake
repo: 'https://github.com/acoto87/war1'
development: halted
status: semi-playable
content: commercial
langs:
- C
frameworks:
- OpenGL
licenses:
- Zlib
updated: 2024-04-26
images:
- 'https://raw.githubusercontent.com/acoto87/war1/master/pics/gif1.gif'
- 'https://raw.githubusercontent.com/acoto87/war1/master/pics/gif2.gif'
- 'https://raw.githubusercontent.com/acoto87/war1/master/pics/gif3.gif'
- 'https://raw.githubusercontent.com/acoto87/war1/master/pics/pic1.png'
- 'https://raw.githubusercontent.com/acoto87/war1/master/pics/pic2.png'
- 'https://raw.githubusercontent.com/acoto87/war1/master/pics/pic3.png'
video:
youtube: vL0S_zVVhts
- name: War1gus
originals:
- 'Warcraft: Orcs & Humans'
status: playable
type: remake
repo: 'https://github.com/Wargus/war1gus'
url: 'https://stratagus.com/war1gus.html'
feed: 'https://github.com/Wargus/war1gus/releases.atom'
development: sporadic
multiplayer:
- Competitive
- Local
- Online
content: commercial
langs:
- Lua
- C++
licenses:
- GPL2
info: >-
A re-implementation of “Warcraft: Orcs & Humans” that allows you to play
Warcraft with the Stratagus engine
added: 2024-09-09
updated: 2024-09-09
images:
- 'https://stratagus.com/img/promoScreenWar1gus.png'
- >-
https://media.moddb.com/cache/images/games/1/18/17684/thumb_620x2000/War1gus_2024-07-17_17-55-54_-_Trim.mp4.jpg
- name: 'Warcraft 2000: Nuclear Epidemic'
originals:
- 'Warcraft 2000'
type: remake
repo: 'https://github.com/ForNeVeR/warcraft-2000-nuclear-epidemic'
development: halted
status: playable
content: commercial
langs:
- C++
licenses:
- As-is
info: 'Source of original game, given away for free'
updated: '2020-09-16'
images:
- >-
https://www.myabandonware.com/media/screenshots/w/warcraft-2000-nuclear-epidemic-it4/warcraft-2000-nuclear-epidemic_1.jpg
- >-
https://www.myabandonware.com/media/screenshots/w/warcraft-2000-nuclear-epidemic-it4/warcraft-2000-nuclear-epidemic_2.jpg
- >-
https://www.myabandonware.com/media/screenshots/w/warcraft-2000-nuclear-epidemic-it4/warcraft-2000-nuclear-epidemic_3.jpg
- >-
https://www.myabandonware.com/media/screenshots/w/warcraft-2000-nuclear-epidemic-it4/warcraft-2000-nuclear-epidemic_4.jpg
- name: Wargus
langs:
- C++
- Lua
licenses:
- GPL2
content: commercial
development: active
originals:
- Warcraft II
status: playable
multiplayer:
- Online
- LAN
- Competitive
repo: https://github.com/Wargus/wargus
type: remake
updated: 2023-01-23
url: https://stratagus.com
info: Wargus is a Warcraft2 Mod that allows you to play Warcraft2 with the Stratagus engine.
images:
- https://stratagus.com/img/screenshotWargus.png
- name: WarsmashModEngine
frameworks:
- libGDX
langs:
- Java
licenses:
- AGPL3
content: commercial
development: sporadic
originals:
- Warcraft III
repo: https://github.com/Retera/WarsmashModEngine
type: remake
updated: 2025-11-05
added: 2023-01-29
url: https://www.hiveworkshop.com/threads/overview-and-setup.331776/
info: This project attempts to be an open source remake of the game program portion of the Warcraft III game.
video:
youtube: 2YDPQW7uyQ8
status: semi-playable
- name: Wario-Land-3
frameworks:
- pygame
langs:
- Python
licenses:
- MIT
development: halted
originals:
- Wario Land 3
status: semi-playable
repo: https://github.com/Nearoo/Wario-Land-3
type: remake
updated: 2023-02-08
info: one playable level, no object interactions
images:
- https://i.imgur.com/ucCK80E.png
video:
youtube: 5U0iEROjCWU
- name: WarMUX
images:
- https://raw.githubusercontent.com/yeKcim/warmux/master/screenshots/warmux_end__A.png
- https://raw.githubusercontent.com/yeKcim/warmux/master/screenshots/warmux_end__B.png
- https://raw.githubusercontent.com/yeKcim/warmux/master/screenshots/warmux11.01.png
- https://raw.githubusercontent.com/yeKcim/warmux/master/screenshots/warmux%2011.04%20characters.png
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
content: open
development: halted
originals:
- Worms Series
status: playable
repo: https://github.com/yeKcim/warmux
type: clone
video:
youtube: X3ZkTg-QkAo
updated: 2023-01-25
- name: Warzone 2100
images:
- https://developer.wz2100.net/raw-attachment/wiki/Screenshots/elite-force.jpg
- https://developer.wz2100.net/raw-attachment/wiki/Screenshots/artillery-and-sensors.jpeg
- https://developer.wz2100.net/raw-attachment/wiki/Screenshots/new-hq-and-powergen.jpeg
- https://developer.wz2100.net/raw-attachment/wiki/Screenshots/highlands.jpg
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
content: open
development: active
originals:
- Warzone 2100
status: playable
repo: https://github.com/Warzone2100/warzone2100
type: remake
url: https://wz2100.net/
updated: 2023-01-17
- name: wasm-terminal-2048
originals:
- '2048'
type: clone
repo: 'https://github.com/ryanpig/wasm_terminal_2048'
url: 'https://crates.io/crates/wasm_terminal_2048'
development: halted
status: playable
langs:
- Rust
- JavaScript
licenses:
- MIT
info: >-
2048 webassembly implementation in Rust that can be run on browser or command
line terminal.
added: 2025-10-31
updated: 2025-10-31
images:
- https://raw.githubusercontent.com/ryanpig/wasm_terminal_2048/main/screenshots/cli-demo.gif
- https://raw.githubusercontent.com/ryanpig/wasm_terminal_2048/main/screenshots/wasm-demo.gif
- name: WaterRace
originals:
- WaterRace
type: official
repo: 'https://github.com/swisspol/WaterRace'
development: complete
status: playable
multiplayer:
- Competitive
- LAN
content: free
langs:
- C++
licenses:
- GPL2
added: 2026-01-26
updated: 2026-01-26
- name: WAtomic
frameworks:
- Kylix
langs:
- Delphi
licenses:
- GPL2
development: halted
originals:
- Atomix
status: playable
repo: https://sourceforge.net/projects/watomic/
type: remake
updated: 2022-03-20
url: https://watomic.sourceforge.net
info: Windows clone of Linux KAtomic logic game, developed using the GLScene OpenGl based library for Delphi.
images:
- https://a.fsdn.com/con/app/proj/watomic/screenshots/66437.jpg/max/max/1
- https://cdn2.portableapps.com/WAtomicPortable.png
video:
youtube: cmS1sXWN4pE
- name: wbt
type: clone
originals:
- Tempest
repo: https://github.com/awlzac/wbt
development: halted
status: playable
langs:
- Java
licenses:
- As-is
content: free
updated: 2022-05-27
images:
- https://lh3.ggpht.com/O0313eHvoYWtkWxyJ20OwEUkokDeFTbvfQCxh_dDnACCgybCbhPpIQwzkAgtYq9gPg=w300
- name: wbta
info: Android
langs:
- Java
licenses:
- As-is
content: free
development: halted
status: playable
originals:
- Tempest
repo: https://github.com/awlzac/wbta
type: clone
updated: 2022-05-27
images:
- https://lh3.ggpht.com/O0313eHvoYWtkWxyJ20OwEUkokDeFTbvfQCxh_dDnACCgybCbhPpIQwzkAgtYq9gPg=w300
- name: WebFun
development: halted
images:
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/game-start.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/game-fight.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/game-debug.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/mobile-game.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/mobile-menu.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/save-game-editor.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/tile-editor.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/character-editor.png
- https://media.githubusercontent.com/media/cyco/WebFun/master/docs/screenshots/action-editor.png
langs:
- TypeScript
licenses:
- MIT
content: commercial
originals:
- 'Star Wars: Yoda Stories'
repo: https://github.com/cyco/WebFun
status: semi-playable
type: remake
updated: 2024-04-28
url: https://www.webfun.io/
- name: WebQuake
originals:
- Quake
type: remake
repo: 'https://github.com/Triang3l/WebQuake'
url: https://triang3l.github.io/WebQuake/
development: halted
status: playable
content: commercial
langs:
- JavaScript
frameworks:
- WebGL
licenses:
- GPL2
info: HTML5/WebGL source port of Quake
updated: 2021-11-10
images:
- https://www.golem.de/1302/97509-53272-webquake_rc.jpg
- https://images.kartones.net/posts/kartonesblog/webquake.webp
- name: Widelands
images:
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/Main_Menu.jpg
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/Splash_Screen.jpg
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/New_Editor_Features.jpg
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/Immovables_Help.jpg
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/Production_Help.jpg
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/Atlantean_Lore.jpg
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/Empire_Lore.jpg
- https://www.widelands.org/wlmedia/wlscreens/screens/Widelands%201.1/Diplomacy.jpg
langs:
- C++
- Lua
- Python
frameworks:
- SDL2
licenses:
- GPL2
content: open
development: very active
status: playable
multiplayer:
- Online
- LAN
originals:
- The Settlers II
repo: https://github.com/widelands/widelands
feed: https://github.com/widelands/widelands/releases.atom
type: clone
url: https://www.widelands.org
updated: 2024-04-29
- name: 'Will Fight for Food: Super Actual Sellout: Game of the Hour'
originals:
- 'Will Fight for Food: Super Actual Sellout: Game of the Hour'
type: official
repo: 'https://github.com/arvindrajayadav/Will-Fight-for-Food--SAS--GOTH'
url: https://pyrodactyl.com/2020/08/04/11-years-of-pyrodactyl/#:~:text=Will%20Fight%20for%20Food:%20SAS:%20GOTH
development: complete
status: playable
content: commercial
langs:
- C++
frameworks:
- OpenGL
- SDL
licenses:
- MIT
added: 2025-12-27
updated: 2026-01-09
- name: Willow-Game-Remake
langs:
- C++
licenses:
- As-is
development: halted
originals:
- Willow
status: unplayable
repo: https://github.com/Kwintenvdb/Willow-Game-Remake
type: remake
updated: 2015-06-28
info: Remake of the first level 1989 arcade game Willow, written in a 2D game engine in C++.
- name: Willy the Worm
originals:
- Willy the Worm
type: remake
repo: 'https://github.com/jasonbrianhall/willytheworm'
feed: 'https://github.com/jasonbrianhall/willytheworm/releases.atom'
development: active
status: playable
content: open
langs:
- C++
- Python
frameworks:
- SDL2
- Qt
licenses:
- MIT
added: 2025-12-03
updated: 2025-12-03
images:
- https://raw.githubusercontent.com/jasonbrianhall/willytheworm/main/images/intro.png
- https://raw.githubusercontent.com/jasonbrianhall/willytheworm/main/images/level1.png
- name: Wind Waker Randomizer
originals:
- 'The Legend of Zelda: The Wind Waker'
type: tool
status: N/A
repo: 'https://github.com/LagoLunatic/wwrando'
feed: 'https://github.com/LagoLunatic/wwrando/releases.atom'
development: sporadic
content: commercial
langs:
- Python
- Assembly
licenses:
- MIT
info: >-
It randomizes all the items in the game so that each playthrough is unique and
you never know where a particular item will be.
updated: '2019-11-08'
video:
youtube: UuEI8h8a0zs
- name: WinDungeon
originals:
- Dungeon Master
type: clone
repo: >-
https://web.archive.org/web/20231001204242/https://magicrom.fr.pagesperso-orange.fr/down.htm
url: >-
https://web.archive.org/web/20231001204442/http://magicrom.fr.pagesperso-orange.fr/prog.htm#:~:text=WinDungeon
development: halted
status: semi-playable
content: free
langs:
- C++
frameworks:
- DirectX
licenses:
- As-is
info: A Dungeon Master clone in 3D.
added: 2026-02-16
updated: 2026-02-16
images:
- https://web.archive.org/web/20231002010815im_/https://magicrom.fr.pagesperso-orange.fr/images/pss_win1.jpg
- https://web.archive.org/web/20231002151647im_/https://magicrom.fr.pagesperso-orange.fr/images/pss_win2.jpg
- https://web.archive.org/web/20260106190743if_/http://dmweb.free.fr/files/Clone,WinDungeon,Windows,Screenshot.jpg
- name: WING
originals:
- Galaga
type: clone
repo: 'https://sourceforge.net/projects/wing/'
url: 'https://wing.sourceforge.net/'
feed: 'https://sourceforge.net/p/wing/news/feed.rss'
development: halted
status: playable
content: open
langs:
- C++
licenses:
- GPL2
info: WING (Wing Is Not Galaga) is a take off on the arcade classic Galaga.
added: 2025-12-18
updated: 2025-12-18
images:
- 'https://wing.sourceforge.net/g/menu01.gif'
- 'https://wing.sourceforge.net/g/menu02.gif'
- 'https://wing.sourceforge.net/g/shoot01.gif'
- 'https://wing.sourceforge.net/g/shoot02.gif'
- 'https://wing.sourceforge.net/g/shoot03.gif'
- 'https://wing.sourceforge.net/g/shoot04.gif'
- name: Winter Jumper
originals:
- The Great Giana Sisters
type: remake
repo: 'https://os4depot.net/?function=showfile&file=game/platform/winterjumper.lha'
url: >-
https://gueux-forum.net/index.php?/topic/224725-winter-jumper-giana-sisters-remake-dingux/
development: halted
status: semi-playable
content: commercial
langs:
- C++
frameworks:
- SDL
licenses:
- As-is
added: 2025-07-09
updated: 2025-07-09
images:
- 'https://mobiles.gx-mod.com/images/news/dingoo/Winter_Jumper/Winter_Jumper.png'
- 'https://os4depot.net/filedata/snapshot/2332_1_snap.jpg'
- name: WinTex
originals:
- Under a Killing Moon
type: remake
repo: 'https://github.com/ElakaSnarne/WinTex'
development: sporadic
status: playable
content: commercial
langs:
- C++
frameworks:
- DirectX
licenses:
- GPL3
info: Windows-native game engine
added: '2025-03-20'
updated: '2025-03-20'
images:
- >-
https://www.gog.com/upload/forum/2024/05/673e4023fdd223acd1d7c6cc61e303b346aa6d45.jpg
- name: WinWar
development: halted
images:
- https://raw.githubusercontent.com/CAMongrel/WinWar/screenshots/Screenshots/Intro.png
- https://raw.githubusercontent.com/CAMongrel/WinWar/screenshots/Screenshots/Orc1.png
- https://raw.githubusercontent.com/CAMongrel/WinWar/screenshots/Screenshots/iPad.jpg
langs:
- C#
frameworks:
- MonoGame
licenses:
- MIT
content: commercial
originals:
- 'Warcraft: Orcs & Humans'
status: playable
repo: https://github.com/CAMongrel/WinWar
type: remake
updated: 2024-04-30
video:
youtube: AIqp-OhKuHM
- name: Wipeout
originals:
- Wipeout
type: official
repo: 'https://archive.org/details/wipesrc.7z'
url: 'https://x.com/forestillusion/status/1508048268176990209'
development: complete
status: playable
content: free
langs:
- C++
licenses:
- As-is
added: 2026-03-10
updated: 2026-03-10
- name: wipEout Rewrite
originals:
- Wipeout
type: remake
repo: 'https://github.com/phoboslab/wipeout-rewrite'
url: 'https://phoboslab.org/wipegame/'
development: very active
status: playable
content: commercial
langs:
- C
frameworks:
- SDL2
licenses:
- As-is
info: based on Wipeout leaked source code
updated: '2023-08-22'
images:
- >-
https://uploads.golmedia.net/uploads/articles/article_media/12624739471692021213gol1.jpg
- 'https://phoboslab.org/content/assets/wipeout-wasm.png'
- name: Witch Blast
development: halted
frameworks:
- SFML
langs:
- C++
licenses:
- GPL3
- CC-BY-NC-SA
content: open
originals:
- The Binding of Isaac
repo: https://github.com/Cirrus-Minor/witchblast
status: playable
type: remake
updated: 2018-03-19
video:
youtube: FsHqu0JpP_k
- name: Witchaven
originals:
- Witchaven
type: official
repo: 'https://github.com/videogamepreservation/whaven'
url: >-
https://web.archive.org/web/20150621123327/http://www.lesbird.com/CAPSTONE/#:~:text=Witchaven%20I
development: complete
status: playable
multiplayer:
- LAN
content: commercial
langs:
- C
frameworks:
- Build
licenses:
- As-is
added: 2026-02-02
updated: 2026-02-02
- name: 'Witchaven II: Blood Vengeance'
originals:
- 'Witchaven II: Blood Vengeance'
type: official
repo: 'https://github.com/videogamepreservation/whaven2'
url: >-
https://web.archive.org/web/20201025064041/https://www.lesbird.com/CAPSTONE/#:~:text=Witchaven%20II,-%20source
development: complete
status: playable
multiplayer:
- LAN
content: commercial
langs:
- C
frameworks:
- Build
licenses:
- As-is
added: 2026-02-02
updated: 2026-02-02
- name: WitchavenGDX
originals:
- Witchaven
- 'Witchaven II: Blood Vengeance'
type: remake
repo: 'https://gitlab.com/m210/WitchavenGDX'
url: https://m210.duke4.net/
development: sporadic
status: playable
content: commercial
langs:
- Java
frameworks:
- libGDX
licenses:
- Custom
updated: 2025-08-02
video:
youtube: GSZscLjNujo
- name: Wizard
originals:
- Wizard
type: official
url: 'https://www.erasmatazz.com/library/source-code/#:~:text=Wizard'
development: complete
status: playable
langs:
- Assembly
licenses:
- As-is
added: 2026-01-06
updated: 2026-01-06
- name: Wizard of Wor HTML5
originals:
- Wizard of Wor
type: remake
repo: 'https://sourceforge.net/projects/wizardofworhtml5/'
feed: 'https://sourceforge.net/projects/wizardofworhtml5/rss?path=/'
development: complete
status: playable
multiplayer:
- Local
content: open
langs:
- JavaScript
licenses:
- GPL2
added: 2026-02-04
updated: 2026-02-04
images:
- https://a.fsdn.com/con/app/proj/wizardofworhtml5/screenshots/wizard_of_wor.jpg
- https://a.fsdn.com/con/app/proj/wizardofworhtml5/screenshots/51881_games_c64_wow_3.gif
- https://a.fsdn.com/con/app/proj/wizardofworhtml5/screenshots/hqdefault.jpg
- name: Wizardry Legacy
langs:
- C++
frameworks:
- Allegro
licenses:
- GPL3