I entered the Ludum Dare game jam again this year. Enjoy!
http://ludumdare.com/compo/ludum-dare-32/?action=preview&uid=28370
http://ludumdare.com/compo/ludum-dare-32/?action=preview&uid=28370
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


java.io.IOException: Unexpected end of file reached at filepos: 971
at org.lateralgm.file.GmStreamDecoder.read(GmStreamDecoder.java:80)
at org.lateralgm.file.GmStreamDecoder.read(GmStreamDecoder.java:59)
at org.lateralgm.file.GmStreamDecoder.readStr(GmStreamDecoder.java:132)
at org.enigma.file.EFileReader$RoomGmDataReader.readData(EFileReader.java:1194)
...
mingw32-make
java -jar lateralgm.jarCreating room creation code scope and parsing
"Linking" scripts into the objects...
"Linking" timelines into the objects...
"Link" complete.
Tabulating maximum argument passes to each script
Finished
Writing executable information and resources.
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x625836c6, pid=1852, tid=1884
#
# JRE version: Java(TM) SE Runtime Environment (7.0_67-b01) (build 1.7.0_67-b01)
# Java VM: Java HotSpot(TM) Client VM (24.65-b04 mixed mode, sharing windows-x86
)
# Problematic frame:
# C [compileEGMf.dll+0x36c6]
#
# Failed to write core dump. Minidumps are not enabled by default on client vers
ions of Windows
#
# An error report file with more information is saved as:
# c:\Users\Administrator\source\enigma-dev\hs_err_pid1852.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
; Comments can appear above sections.
[somesection]
test = hi ;..also after vars
test2 = " hi "
;Var quote
test3 = " hi " ;quotes are used to preserve spaces in values.
test4 = hi ;test
test5 = hi
test6 = hi ;tset
test7 = "hi;" ;...quotes also help if the comment character is inside your value
test8 = "newvar;"
;A comment at the end of the file

//Every instance of "fname", such as :
int file_exists(std::string fname);
//...becomes:
int file_exists(const filestr& fname);file_exists("somefile.txt")//On Linux:
filestr::filestr(const char* fname) : data(fname) { std::replace(data.begin(), data.end(), '\\', '/');}
//On Windows:
filestr::filestr(const char* fname) : data(fname) {}//Old code:
wto <<"instance->timeline_running = false;\n"
//New code:
wto <<"instance->timeline_running = " <<(GM5COMPAT?"true":"false") <<";\n"


