dfhack/plugins/Dfusion
Warmist f1d32ef766 Peek and pokes with lua bindings. Also interpreter implemented
Signed-off-by: Warmist <Warmist@gmail.com>
2011-07-28 00:21:09 +03:00
..
include Added simple readme, fixed sdl_threads and moved to tinythreads (mutex for lua engine). Other small fixes 2011-07-27 23:10:20 +03:00
src Peek and pokes with lua bindings. Also interpreter implemented 2011-07-28 00:21:09 +03:00
CMakeLists.txt Added simple readme, fixed sdl_threads and moved to tinythreads (mutex for lua engine). Other small fixes 2011-07-27 23:10:20 +03:00
dfusion.cpp Peek and pokes with lua bindings. Also interpreter implemented 2011-07-28 00:21:09 +03:00
readme.txt Added simple readme, fixed sdl_threads and moved to tinythreads (mutex for lua engine). Other small fixes 2011-07-27 23:10:20 +03:00

readme.txt

Dfusion command runs file <df dir>\dfusion\init.lua
Other than std lua commands supported:
	* Console.
		print(string)
		printerr(string)
		clear()
		gotoxy(x,y)
		color(int)	//TODO add id's, use numbers upto 16 for now
		reset_color()
		cursor(true/false)
		msleep(int)
		get_columns()
		get_rows()
		lineedit(string)	//text input through console
		history_add(string) // adds string to console history
		
Functions searched:
	OnTick()
		If defined is called each DFHack tick.