├── .gitignore ├── basictypes.h ├── compilerenvironment.h ├── computer.h ├── controls.cpp ├── controls.h ├── creation.h ├── extern.h ├── font.cpp ├── frontend.h ├── gamedefines.h ├── gamewindow.cpp ├── gamewindow.h ├── global.cpp ├── god.h ├── graphics.cpp ├── graphicsclasses.h ├── graphicsdata.cpp ├── icon1.ico ├── localization.cpp ├── localization.h ├── misc.cpp ├── misc.h ├── object.cpp ├── object.h ├── platform.cpp ├── platform.h ├── populous.h ├── populous_arc.cpp ├── populous_battle.cpp ├── populous_computer.cpp ├── populous_constructorandinit.cpp ├── populous_debug.cpp ├── populous_drawsprs.cpp ├── populous_effect.cpp ├── populous_fe_read_block.cpp ├── populous_frontend.cpp ├── populous_io.cpp ├── populous_load_sound.cpp ├── populous_map.cpp ├── populous_misc.cpp ├── populous_misc_too.cpp ├── populous_not_game.cpp ├── populous_peeps.cpp ├── populous_read_block.cpp ├── populous_run.cpp ├── populous_sound.cpp ├── populous_validatefiles.cpp ├── preferences.cpp ├── preferences.h ├── registryfunctions.cpp ├── registryfunctions.h ├── resource.h ├── safeprogramming.h ├── sample.cpp ├── sample.h ├── score.h ├── script.cpp ├── script.rc ├── soundsystem.cpp ├── soundsystem.h ├── string.cpp ├── string.h ├── timer.cpp ├── timer.h └── winmain.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/.gitignore -------------------------------------------------------------------------------- /basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/basictypes.h -------------------------------------------------------------------------------- /compilerenvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/compilerenvironment.h -------------------------------------------------------------------------------- /computer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/computer.h -------------------------------------------------------------------------------- /controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/controls.cpp -------------------------------------------------------------------------------- /controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/controls.h -------------------------------------------------------------------------------- /creation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/creation.h -------------------------------------------------------------------------------- /extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/extern.h -------------------------------------------------------------------------------- /font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/font.cpp -------------------------------------------------------------------------------- /frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/frontend.h -------------------------------------------------------------------------------- /gamedefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/gamedefines.h -------------------------------------------------------------------------------- /gamewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/gamewindow.cpp -------------------------------------------------------------------------------- /gamewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/gamewindow.h -------------------------------------------------------------------------------- /global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/global.cpp -------------------------------------------------------------------------------- /god.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/god.h -------------------------------------------------------------------------------- /graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/graphics.cpp -------------------------------------------------------------------------------- /graphicsclasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/graphicsclasses.h -------------------------------------------------------------------------------- /graphicsdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/graphicsdata.cpp -------------------------------------------------------------------------------- /icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/icon1.ico -------------------------------------------------------------------------------- /localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/localization.cpp -------------------------------------------------------------------------------- /localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/localization.h -------------------------------------------------------------------------------- /misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/misc.cpp -------------------------------------------------------------------------------- /misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/misc.h -------------------------------------------------------------------------------- /object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/object.cpp -------------------------------------------------------------------------------- /object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/object.h -------------------------------------------------------------------------------- /platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/platform.cpp -------------------------------------------------------------------------------- /platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/platform.h -------------------------------------------------------------------------------- /populous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous.h -------------------------------------------------------------------------------- /populous_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_arc.cpp -------------------------------------------------------------------------------- /populous_battle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_battle.cpp -------------------------------------------------------------------------------- /populous_computer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_computer.cpp -------------------------------------------------------------------------------- /populous_constructorandinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_constructorandinit.cpp -------------------------------------------------------------------------------- /populous_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_debug.cpp -------------------------------------------------------------------------------- /populous_drawsprs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_drawsprs.cpp -------------------------------------------------------------------------------- /populous_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_effect.cpp -------------------------------------------------------------------------------- /populous_fe_read_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_fe_read_block.cpp -------------------------------------------------------------------------------- /populous_frontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_frontend.cpp -------------------------------------------------------------------------------- /populous_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_io.cpp -------------------------------------------------------------------------------- /populous_load_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_load_sound.cpp -------------------------------------------------------------------------------- /populous_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_map.cpp -------------------------------------------------------------------------------- /populous_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_misc.cpp -------------------------------------------------------------------------------- /populous_misc_too.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_misc_too.cpp -------------------------------------------------------------------------------- /populous_not_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_not_game.cpp -------------------------------------------------------------------------------- /populous_peeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_peeps.cpp -------------------------------------------------------------------------------- /populous_read_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_read_block.cpp -------------------------------------------------------------------------------- /populous_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_run.cpp -------------------------------------------------------------------------------- /populous_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_sound.cpp -------------------------------------------------------------------------------- /populous_validatefiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/populous_validatefiles.cpp -------------------------------------------------------------------------------- /preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/preferences.cpp -------------------------------------------------------------------------------- /preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/preferences.h -------------------------------------------------------------------------------- /registryfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/registryfunctions.cpp -------------------------------------------------------------------------------- /registryfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/registryfunctions.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/resource.h -------------------------------------------------------------------------------- /safeprogramming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/safeprogramming.h -------------------------------------------------------------------------------- /sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/sample.cpp -------------------------------------------------------------------------------- /sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/sample.h -------------------------------------------------------------------------------- /score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/score.h -------------------------------------------------------------------------------- /script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/script.cpp -------------------------------------------------------------------------------- /script.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/script.rc -------------------------------------------------------------------------------- /soundsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/soundsystem.cpp -------------------------------------------------------------------------------- /soundsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/soundsystem.h -------------------------------------------------------------------------------- /string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/string.cpp -------------------------------------------------------------------------------- /string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/string.h -------------------------------------------------------------------------------- /timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/timer.cpp -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/timer.h -------------------------------------------------------------------------------- /winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonHaze420/DCPopulous/HEAD/winmain.cpp --------------------------------------------------------------------------------