From ce9c189ce1f89686ca74ea49a21221824d2e0500 Mon Sep 17 00:00:00 2001 From: Trilarion Date: Thu, 31 May 2018 08:51:37 +0200 Subject: [PATCH] new entries --- README.md | 4 +- games/maintenance.py | 8 +++- games/statistics.md | 37 ++++++++++--------- games/strategy/_toc.md | 9 +++++ games/strategy/caesar_ia.md | 15 ++++++++ games/strategy/call_to_power2.md | 17 +++++++++ games/strategy/freeserf.md | 15 ++++++++ .../strategy/knights_and_merchants_remake.md | 16 ++++++++ games/strategy/mewl.md | 14 +++++++ games/strategy/open_pop.md | 13 +++++++ games/strategy/settlers_iii_remake.md | 16 ++++++++ games/strategy/theme_hospital.md | 16 ++++++++ games/strategy/tvtower.md | 14 +++++++ 13 files changed, 172 insertions(+), 22 deletions(-) create mode 100644 games/strategy/caesar_ia.md create mode 100644 games/strategy/call_to_power2.md create mode 100644 games/strategy/freeserf.md create mode 100644 games/strategy/knights_and_merchants_remake.md create mode 100644 games/strategy/mewl.md create mode 100644 games/strategy/open_pop.md create mode 100644 games/strategy/settlers_iii_remake.md create mode 100644 games/strategy/theme_hospital.md create mode 100644 games/strategy/tvtower.md diff --git a/README.md b/README.md index 82612856..63f9848a 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # Open Source Games [comment]: # (start of autogenerated content, do not edit) -292 entries +301 entries - **[Action games](games/action/_toc.md)** (1) - **[Adventure games & Visual novels](games/adventure/_toc.md)** (15) - **[Game frameworks](games/framework/_toc.md)** (49) - **[Popular required libraries](games/library/_toc.md)** (22) - **[Role Playing Games](games/rpg/_toc.md)** (66) - **[Simulation games](games/simulation/_toc.md)** (12) -- **[Strategy games](games/strategy/_toc.md)** (126) +- **[Strategy games](games/strategy/_toc.md)** (135) - **[Tools & Manuals](games/misc/_toc.md)** (1) [comment]: # (end of autogenerated content) diff --git a/games/maintenance.py b/games/maintenance.py index 06476e5b..c5cb13fa 100644 --- a/games/maintenance.py +++ b/games/maintenance.py @@ -308,7 +308,9 @@ def parse_entry(content): regex = re.compile(r"- State: (.*)") matches = regex.findall(content) if matches: - states = matches[0].split(',') + # first remove everything in parenthesis + states = re.sub(r'\([^)]*\)', '', matches[0]) + states = states.split(',') states = [x.strip() for x in states] if 'beta' in states: info['state'] = 'beta' @@ -332,7 +334,9 @@ def parse_entry(content): regex = re.compile(r"- Code license: (.*)") matches = regex.findall(content) if matches: - info['license'] = matches[0] + # first remove everything in parenthesis + license = re.sub(r'\([^)]*\)', '', matches[0]) + info['license'] = license return info diff --git a/games/statistics.md b/games/statistics.md index 92d7c0e6..4c2197f3 100644 --- a/games/statistics.md +++ b/games/statistics.md @@ -1,17 +1,17 @@ [comment]: # (autogenerated content, do not edit) # Statistics -analyzed 292 entries on 2018-05-30 15:42:23 +analyzed 301 entries on 2018-05-31 08:51:17 ## State -- mature: 135 (46.2%) -- beta: 110 (37.7%) -- inactive: 105 (36.0%) +- mature: 139 (46.2%) +- beta: 115 (38.2%) +- inactive: 107 (35.5%) ##### Inactive State -zoc (2017), dark_destiny (2016), dnt (2016), polis (2016), wargame (2016), egoboo (2015), epic_of_heroes (2015), free_heroes2_engine (2015), project_helena (2015), roguish (2015), argentum_online (2014), battles_of_antargis (2014), drop_shock (2014), hale (2014), heroes_of_wing_commander (2014), kingdoms (2014), lips_of_suna (2014), open_tibia (2014), openrpgmaker (2014), rpge (2014), sintel (2014), summoming_wars (2014), turious (2014), xenowar (2014), c_evo (2013), mpango (2013), openrpg (2013), trinity_reign (2013), vegatrek (2013), blacknova_traders (2012), conquests (2012), dark_city (2012), hexwar (2012), outer_space (2012), parpg (2012), solar_empire (2012), thousand_parsec (2012), age_of_magic (2011), atlantis (2011), battlefield_java (2011), dawn (2011), galaxymage_redux (2011), kobolds_quest_2 (2011), kq_lives (2011), open_moo2 (2011), project_diaspora (2011), runesword_ii (2011), song_of_albion (2011), star_control_2 (2011), world_of_phaos (2011), x-force (2011), ai_wars (2010), labyrinth_of_worlds (2010), mercenary_commander (2010), open_homm (2010), radakan (2010), singularity (2010), skrupel (2010), slay (2010), space_trader_for_java (2010), 8kingdoms (2009), alien_assault_traders (2009), annchienta (2009), begin2 (2009), blitzkrieg (2009), dark_oberon (2009), duel_commander (2009), fall_of_imiryn (2009), freetrain (2009), glest (2009), goblin_hack (2009), world_of_heroes (2009), a_planets_revenge (2008), attal (2008), freestars (2008), mars_land_of_no_mercy (2008), moopy (2008), sengoky_warring_states_of_japan (2008), space_opera (2008), space_trader_for_windows (2008), armies (2007), silvertree (2007), arthurs_knights (2006), boson (2006), crown_and_cutless (2006), eleconics (2006), jquest (2006), metal_mech (2006), underworld_adventures (2006), galaxyng (2005), h_world (2005), spice_trade (2005), colonization_too (2004), geewhiz (2004), openglad (2004), promisance (2004), t_bots (2004), antichess (2003), civil (2003), machinations (2003), planetary_hoppers (2003), wargamer (2003), umbra (2002), civil_war (2001), operation_citadel (2000) +zoc (2017), dark_destiny (2016), dnt (2016), polis (2016), wargame (2016), egoboo (2015), epic_of_heroes (2015), free_heroes2_engine (2015), mewl (2015), project_helena (2015), roguish (2015), argentum_online (2014), battles_of_antargis (2014), drop_shock (2014), hale (2014), heroes_of_wing_commander (2014), kingdoms (2014), lips_of_suna (2014), open_tibia (2014), openrpgmaker (2014), rpge (2014), sintel (2014), summoming_wars (2014), turious (2014), xenowar (2014), c_evo (2013), mpango (2013), openrpg (2013), trinity_reign (2013), vegatrek (2013), blacknova_traders (2012), conquests (2012), dark_city (2012), hexwar (2012), outer_space (2012), parpg (2012), solar_empire (2012), thousand_parsec (2012), age_of_magic (2011), atlantis (2011), battlefield_java (2011), dawn (2011), galaxymage_redux (2011), kobolds_quest_2 (2011), kq_lives (2011), open_moo2 (2011), project_diaspora (2011), runesword_ii (2011), song_of_albion (2011), star_control_2 (2011), world_of_phaos (2011), x-force (2011), ai_wars (2010), labyrinth_of_worlds (2010), mercenary_commander (2010), open_homm (2010), radakan (2010), singularity (2010), skrupel (2010), slay (2010), space_trader_for_java (2010), 8kingdoms (2009), alien_assault_traders (2009), annchienta (2009), begin2 (2009), blitzkrieg (2009), dark_oberon (2009), duel_commander (2009), fall_of_imiryn (2009), freetrain (2009), glest (2009), goblin_hack (2009), open_pop (2009), world_of_heroes (2009), a_planets_revenge (2008), attal (2008), freestars (2008), mars_land_of_no_mercy (2008), moopy (2008), sengoky_warring_states_of_japan (2008), space_opera (2008), space_trader_for_windows (2008), armies (2007), silvertree (2007), arthurs_knights (2006), boson (2006), crown_and_cutless (2006), eleconics (2006), jquest (2006), metal_mech (2006), underworld_adventures (2006), galaxyng (2005), h_world (2005), spice_trade (2005), colonization_too (2004), geewhiz (2004), openglad (2004), promisance (2004), t_bots (2004), antichess (2003), civil (2003), machinations (2003), planetary_hoppers (2003), wargamer (2003), umbra (2002), civil_war (2001), operation_citadel (2000) ##### Without state tag (47) @@ -19,30 +19,31 @@ zoc (2017), dark_destiny (2016), dnt (2016), polis (2016), wargame (2016), egobo ## Languages -Without language tag: 19 (6.5%) +Without language tag: 19 (6.3%) civil_war, crimson_fields, dragon_history, evol_online, imperium, land_of_fire, machinations, meritous, murder_in_the_public_domain, open_general, open_moo2, openal, openrpgmaker, parpg, solaris, space_station_13, star_maiden_rio, vegatrek, xconq ##### Language frequency -- C++ (36.3%) -- C (20.8%) -- Java (11.8%) -- Python (8.8%) -- Lua (4.2%) -- Javascript (3.6%) -- C# (3.0%) -- PHP (3.0%) +- C++ (36.8%) +- C (20.2%) +- Java (11.7%) +- Python (8.5%) +- Lua (4.7%) +- Javascript (3.5%) +- C# (2.9%) +- PHP (2.9%) - Ren'py (1.2%) - Haxe (0.9%) +- Delphi (0.6%) - Delphi Pascal (0.6%) - ActionScript (0.3%) - Ada (0.3%) - Angelscript (0.3%) - Basic (0.3%) +- BlitzMax (0.3%) - Clojure (0.3%) - D (0.3%) -- Delphi (0.3%) - GDScript (0.3%) - Kotlin (0.3%) - Lazarus (0.3%) @@ -58,9 +59,9 @@ civil_war, crimson_fields, dragon_history, evol_online, imperium, land_of_fire, ## Code licenses -Without license tag: 123 (42.1%) +Without license tag: 132 (43.9%) -8kingdoms, a_planets_revenge, age_of_magic, ai_wars, alien_assault_traders, ancient_beast, antichess, armies, arthurs_knights, atlantis, atrinik, attal, battlefield_java, battles_of_antargis, begin2, blacknova_traders, blitzkrieg, boson, c_evo, camelia_girls, catch_challenger, civil_war, civone, clou, colonization_too, conquests, crimson_fields, dark_destiny, dark_oberon, digital, dragon_hunt, drop_shock, duel_commander, eleconics, epic_of_heroes, epoh, evil_cult, evol_online, first_strike, free_heroes2_engine, free_space_colonization, freelords, freerails, freespace_colonization, freestars, freetrain, galaxymage_redux, galaxyng, geewhiz, h_world, harris, heroes_of_wesnoth, heroes_of_wing_commander, hexwar, imperium, jagged_alliance2, jquest, jsettlers, kingdoms, kobolds_quest_2, kq_lives, labyrinth_of_worlds, land_of_fire, machinations, mars_land_of_no_mercy, mercenary_commander, meritous, metal_mech, moopy, mpango, open_general, open_homm, open_moo2, open_panzer, open_rails, openglad, openrpg, openrpgmaker, operation_citadel, other_life, outer_space, parpg, pioneers, planetary_hoppers, polis, project_helena, promisance, runesword_ii, scorched_moon, sengoky_warring_states_of_japan, simple_solitaire, sintel, skrupel, slay, solar_empire, solaris, song_of_albion, space_faring, space_opera, space_station_13, space_trader_for_java, space_trader_for_windows, space_war, spice_trade, star_maiden_rio, stars_nova, supremacy, t_bots, thousand_parsec, turious, underworld_adventures, vcmi, war_of_kingdom, wargame, wargamer, wargus, warzone_2100, wastes_edge, wolfpack_empire, world_of_heroes, x-force, xenowar, zoc +8kingdoms, a_planets_revenge, age_of_magic, ai_wars, alien_assault_traders, ancient_beast, antichess, armies, arthurs_knights, atlantis, atrinik, attal, battlefield_java, battles_of_antargis, begin2, blacknova_traders, blitzkrieg, boson, c_evo, caesar_ia, call_to_power2, camelia_girls, catch_challenger, civil_war, civone, clou, colonization_too, conquests, crimson_fields, dark_destiny, dark_oberon, digital, dragon_hunt, drop_shock, duel_commander, eleconics, epic_of_heroes, epoh, evil_cult, evol_online, first_strike, free_heroes2_engine, free_space_colonization, freelords, freerails, freeserf, freespace_colonization, freestars, freetrain, galaxymage_redux, galaxyng, geewhiz, h_world, harris, heroes_of_wesnoth, heroes_of_wing_commander, hexwar, imperium, jagged_alliance2, jquest, jsettlers, kingdoms, knights_and_merchants_remake, kobolds_quest_2, kq_lives, labyrinth_of_worlds, land_of_fire, machinations, mars_land_of_no_mercy, mercenary_commander, meritous, metal_mech, mewl, moopy, mpango, open_general, open_homm, open_moo2, open_panzer, open_pop, open_rails, openglad, openrpg, openrpgmaker, operation_citadel, other_life, outer_space, parpg, pioneers, planetary_hoppers, polis, project_helena, promisance, runesword_ii, scorched_moon, sengoky_warring_states_of_japan, settlers_iii_remake, simple_solitaire, sintel, skrupel, slay, solar_empire, solaris, song_of_albion, space_faring, space_opera, space_station_13, space_trader_for_java, space_trader_for_windows, space_war, spice_trade, star_maiden_rio, stars_nova, supremacy, t_bots, theme_hospital, thousand_parsec, turious, tvtower, underworld_adventures, vcmi, war_of_kingdom, wargame, wargamer, wargus, warzone_2100, wastes_edge, wolfpack_empire, world_of_heroes, x-force, xenowar, zoc ##### Licenses frequency @@ -87,5 +88,5 @@ Without license tag: 123 (42.1%) - Ms-MPL MIT (0.6%) - Proprietary (0.6%) - Public Domain (0.6%) -- zlib (core) (0.6%) +- zlib (0.6%) diff --git a/games/strategy/_toc.md b/games/strategy/_toc.md index d7421846..d87777c6 100644 --- a/games/strategy/_toc.md +++ b/games/strategy/_toc.md @@ -22,10 +22,13 @@ - **[Blitzkrieg](blitzkrieg.md)** (Java, GPL, beta, inactive since 2009) - **[Boson](boson.md)** (C++, GPL-2.0, beta, inactive since 2006) - **[C-evo](c_evo.md)** (Delphi Pascal, mature, inactive since 2013) +- **[Caesar IA](caesar_ia.md)** (C++, GPL-3.0, beta) +- **[Call to Power 2](call_to_power2.md)** (C++, Custom (Activision CTP2 source EULA), mature) - **[CivOne](civone.md)** (C#, CC0, beta) - **[Civil](civil.md)** (Python, beta, inactive since 2003) - **[Colonization too](colonization_too.md)** (C++, GPL-2.0, beta, inactive since 2004) - **[Conquests](conquests.md)** (C++, GPL-2.0, mature, inactive since 2012) +- **[Corsix Theme Hospital](theme_hospital.md)** (Lua, C++, MIT, mature) - **[Crimson Fields](crimson_fields.md)** () - **[Crown and Cutless](crown_and_cutless.md)** (C++, beta, inactive since 2006) - **[Dark Destiny](dark_destiny.md)** (Java, unclear, mature, inactive since 2016) @@ -46,6 +49,7 @@ - **[FreeRails](freerails.md)** (Java, beta) - **[Freeciv](freeciv.md)** (C, mature) - **[Freeciv WebGL](freeciv_web.md)** (Javascript, Java, mature) +- **[Freeserf](freeserf.md)** (C++, GPL-3.0, beta) - **[Freestars](freestars.md)** (C++, beta, inactive since 2008) - **[GalaxyNG](galaxyng.md)** (C, GPL-2.0, mature, inactive since 2005) - **[Gigalomania](gigalomania.md)** (C++) @@ -60,8 +64,10 @@ - **[JSettlers](jsettlers.md)** (Java, GPL-3.0, mature) - **[Jagged Alliance 2 Stracciatella](jagged_alliance2.md)** (C++, Various, mature) - **[Kingdoms](kingdoms.md)** (C++, GPL-3.0, beta, inactive since 2014) +- **[Knights and Merchants Remake](knights_and_merchants_remake.md)** (Delphi, AGPL-3.0, mature) - **[LGeneral](lgeneral.md)** (C, mature) - **[LordsAWar!](lordsawar.md)** (C++, mature) +- **[M.E.W.L.](mewl.md)** (C++, GPL-2.0, beta (more like alpha), inactive since 2015) - **[Machinations](machinations.md)** (beta, inactive since 2003) - **[Mars, Land of No Mercy](mars_land_of_no_mercy.md)** (C++, GPL-2.0, beta, inactive since 2008) - **[Mechanized Assault & eXploration Reloaded ](maxr.md)** (C++, C) @@ -77,6 +83,7 @@ - **[Open Panzer](open_panzer.md)** (Javascript, GPL-2.0, mature) - **[OpenHoMM](open_homm.md)** (C++, GPL-3.0, beta, inactive since 2010) - **[OpenMOO2](open_moo2.md)** (beta, inactive since 2011) +- **[OpenPop](open_pop.md)** (C++, GPL-3.0, beta, inactive since 2009) - **[OpenRA](open_ra.md)** (C#, mature) - **[OpenXcom](open_xcom.md)** (C++, mature) - **[Operation Citadel](operation_citadel.md)** (C++, GPL-2.0, beta, inactive since 2000) @@ -89,6 +96,7 @@ - **[Promisance](promisance.md)** (PHP, GPL-2.0, mature, inactive since 2004) - **[Scorched Moon](scorched_moon.md)** (Python, GPL-3.0, beta) - **[Sengoku: Warring States of Japan](sengoky_warring_states_of_japan.md)** (C++, Lua, MIT, beta, inactive since 2008) +- **[Settlers III remake](settlers_iii_remake.md)** (Java, MIT, beta) - **[Simple-Solitaire](simple_solitaire.md)** (Java, GPL-3.0, mature) - **[Skrupel - Tribute Compilation](skrupel.md)** (PHP, Javascript, GPL-2.0, mature, inactive since 2010) - **[Slay](slay.md)** (Java, GPL-3.0, beta, inactive since 2010) @@ -104,6 +112,7 @@ - **[Stars! Nova](stars_nova.md)** (C#, GPL-2.0, beta) - **[Supremacy](supremacy.md)** (C#, Ms-RL, beta, inactive) - **[T-Bots](t_bots.md)** (C, GPL-2.0, beta, inactive since 2004) +- **[TVTower](tvtower.md)** (BlitzMax, Lua, Custom (similar to MIT, Apache), mature) - **[Tanks of Freedom](tanks_of_freedom.md)** (GDScript) - **[The Epic of Heroes](epic_of_heroes.md)** (C++, GPL-3.0, beta, inactive since 2015) - **[Thousand Parsec](thousand_parsec.md)** (C++, Python, GPL-2.0, beta, inactive since 2012) diff --git a/games/strategy/caesar_ia.md b/games/strategy/caesar_ia.md new file mode 100644 index 00000000..e9b4eaed --- /dev/null +++ b/games/strategy/caesar_ia.md @@ -0,0 +1,15 @@ +# Caesar IA + +_Remake of the popular citybuilder/economic strategy - Caesar III, videogame by Empressions Games._ + +- Home: https://bitbucket.org/dalerank/caesaria/overview, https://bitbucket.org/dalerank/caesaria/wiki/Home +- Download: https://bitbucket.org/dalerank/caesaria/wiki/Releases +- State: beta +- Code: https://bitbucket.org/dalerank/caesaria/src +- Language(s): C++ +- License: GPL-3.0 + +## Building + +Uses CMake. Also supports Android. + diff --git a/games/strategy/call_to_power2.md b/games/strategy/call_to_power2.md new file mode 100644 index 00000000..a91d7f34 --- /dev/null +++ b/games/strategy/call_to_power2.md @@ -0,0 +1,17 @@ +# Call to Power 2 + +_Strategy game released by Activision as a sequel to Civilization: Call to Power, which itself was a successor to the Civilization series by Sid Meier._ + +- Home: http://ctp2.darkdust.net/, https://apolyton.net/forum/other-games/call-to-power-2/ctp2-source-code-project +- Media: https://en.wikipedia.org/wiki/Call_to_Power_II#Source_code_release +- State: mature +- Keywords: TBS +- Code: http://ctp2.darkdust.net/anonsvn/ (svn) +- Language(s): C++ +- License: Custom (Activision CTP2 source EULA) + +May require ownership of original content? + +## Building + +See Forum on apolyton.net \ No newline at end of file diff --git a/games/strategy/freeserf.md b/games/strategy/freeserf.md new file mode 100644 index 00000000..e0ca8da1 --- /dev/null +++ b/games/strategy/freeserf.md @@ -0,0 +1,15 @@ +# Freeserf + +_Clone of the brilliant simulation game The Settlers 1 aka Serf City._ + +- Home: http://jonls.dk/freeserf/ +- Download: https://github.com/freeserf/freeserf/releases +- State: beta +- Keywords: remake, requires original game content (Settlers 1) +- Code: https://github.com/freeserf/freeserf +- Language(s): C++ +- License: GPL-3.0 + +## Building + +Uses CMake diff --git a/games/strategy/knights_and_merchants_remake.md b/games/strategy/knights_and_merchants_remake.md new file mode 100644 index 00000000..15b2ed75 --- /dev/null +++ b/games/strategy/knights_and_merchants_remake.md @@ -0,0 +1,16 @@ +# Knights and Merchants Remake + +_An unofficial fan-made mod for the game Knights and Merchants._ + +- Home: http://www.kamremake.com/ +- Download: http://www.kamremake.com/download/ +- State: mature +- Keywords: RTS +- Code: https://github.com/Kromster80/kam_remake +- Language(s): Delphi +- License: AGPL-3.0 + +Requires original game content. + +## Building + diff --git a/games/strategy/mewl.md b/games/strategy/mewl.md new file mode 100644 index 00000000..eae6a636 --- /dev/null +++ b/games/strategy/mewl.md @@ -0,0 +1,14 @@ +# M.E.W.L. + +_Remake of the classic multiplayer economic strategy game M.U.L.E.._ + +- Home: https://github.com/LionsPhil/mewl +- State: beta (more like alpha), inactive since 2015 +- Keywords: remake +- Code: https://github.com/LionsPhil/mewl +- Language(s): C++ +- License: GPL-2.0 + +## Building + +custom Makefile diff --git a/games/strategy/open_pop.md b/games/strategy/open_pop.md new file mode 100644 index 00000000..c1bb6ee2 --- /dev/null +++ b/games/strategy/open_pop.md @@ -0,0 +1,13 @@ +# OpenPop + +_A clone of Populous: The Beginning._ + +- Home: http://openpopulous.sourceforge.net/, https://sourceforge.net/projects/openpopulous/ +- Download: https://sourceforge.net/projects/openpopulous/files +- State: beta, inactive since 2009 +- Code: https://sourceforge.net/p/openpopulous/code/HEAD/tree/ +- Language(s): C++ +- License: GPL-3.0 + +## Building + diff --git a/games/strategy/settlers_iii_remake.md b/games/strategy/settlers_iii_remake.md new file mode 100644 index 00000000..d6e00324 --- /dev/null +++ b/games/strategy/settlers_iii_remake.md @@ -0,0 +1,16 @@ +# Settlers III remake + +_Remake of "The Settlers III" for Windows, Linux, Mac and Android._ + +- Home: https://github.com/jsettlers/settlers-remake +- Download: https://github.com/jsettlers/settlers-remake/releases +- State: beta +- Keywords: remake, requires original game content +- Code: https://github.com/jsettlers/settlers-remake +- Language(s): Java +- License: MIT + +## Building + +Uses Gradle + diff --git a/games/strategy/theme_hospital.md b/games/strategy/theme_hospital.md new file mode 100644 index 00000000..11722fac --- /dev/null +++ b/games/strategy/theme_hospital.md @@ -0,0 +1,16 @@ +# Corsix Theme Hospital + +_Reimplementation of the 1997 Bullfrog business sim Theme Hospital._ + +- Home: http://forums.corsixth.com/ +- Download: https://github.com/CorsixTH/CorsixTH/releases +- State: mature +- Keywords: remake, requires original content +- Code: https://github.com/CorsixTH/CorsixTH +- Language(s): Lua, C++ +- License: MIT + +## Building + +Uses CMake + diff --git a/games/strategy/tvtower.md b/games/strategy/tvtower.md new file mode 100644 index 00000000..afeed6dd --- /dev/null +++ b/games/strategy/tvtower.md @@ -0,0 +1,14 @@ +# TVTower + +_A fan remake of MadTV._ + +- Home: http://www.tvgigant.de/ +- Media: https://en.wikipedia.org/wiki/Mad_TV_(video_game)#Remakes +- Download: see home +- State: mature +- Code: https://github.com/TVTower/TVTower +- Language(s): BlitzMax, Lua +- License: Custom (similar to MIT, Apache) + +## Building +