Major Project for COMP8551
In order to run make you will need make for windows found here:
http://gnuwin32.sourceforge.net/packages/make.htm
Note: Just dl and install complete package
Navigate to file that contains Makefile then:
To build the game
make
To run the game
./engine.exe
To run unit tests. Results end up in test_results.txt.
make tests
If when trying to run it says it can't find glfw3.dll, just move the dll file in libs to the same folder as the Makefile. Again not sure why this is a thing.
<root>
<variables>
<int name="health" value="5"/>
<bool name="isTrue" value="true"/>
<entity name="robotEntity" value="robot" />
</variables>
<start>
<updateVar name="health" value="4" type="int" />
<addVar name="health" value="3" type="int" />
</start>
<update>
<ifVarGreater name="health" value="6" type="int">
<onEntity name="robot">
<moveEntity x="0.0" y="-9.0" z="0.0"/>
</onEntity>
</ifVarGreater>
<keyPress value="KEY_W">
<moveEntity x="0.0" y="9.0" z="0.0"/>
</keyPress>
<changeSprite name="src/res/textures/Road.png" />
</update>
<onCollision>
</onCollision>
</root>
Stores a variable to be used later.
Variable types: int, float, double, string, boolean, entity, globalInt, globalFloat, globalDouble, globalString, globalBool, and globalEntity
Reserved variables:
deltaTime (double): the deltatime of the frame.
objectCollision-name (string): set to entity's name collided with.
objectCollision-tag (string): set to entity's tag collided with.
<variables>
<int name="health" value="2" />
<float name="timer" value="0.0" />
<double name="attackTimer" value="2.0" />
<string name="hello" value="hello world" />
<bool name="isTrue" value="true" />
<entity name="entityName" value="entityName" />
<globalInt name="points" value="3" />
<variables>
Commands to run when the scene starts.
<start>
<!-- Any commands -->
</start>
Commands to run when the scene updates on each frame.
<update>
<!-- Any commands -->
</update>
Commands to run when a collision occurs on that object.
<onCollision>
<!-- Any commands -->
</onCollision>
If statement to check if a variable defined is of a particular value.
<ifVar name="variableName" value="valueToCompare" type="variableType">
<!-- Any commands -->
</ifVar>
If statement to check if a variable defined is greater then a particular value.
<ifGreaterVar name="variableName" value="valueToCompare" type="variableType">
<!-- Any commands -->
</ifGreaterVar>
If statement to check if a variable defined is less then a particular value.
<IfVarLess name="variableName" value="valueToCompare" type="variableType">
<!-- Any commands -->
</IfVarLess>
If statement to check if a global variable defined is of a particular value.
<ifGlobalVar name="variableName" value="valueToCompare" type="variableType">
<!-- Any commands -->
</ifGlobalVar>
If statement to check if a global variable defined is greater then a particular value.
<ifGlobalVarGreater name="variableName" value="valueToCompare" type="variableType">
<!-- Any commands -->
</ifGlobalVarGreater>
If statement to check if a variable defined is less then a particular value.
<ifGlobalVarLess name="variableName" value="valueToCompare" type="variableType">
<!-- Any commands -->
</ifGlobalVarLess>
When key is pressed do commands. Not all keys work, to check if a key works check the unordered map in the CScriptFunctions namespace.
<keyPress value="KEY_E">
<!-- Any commands -->
</keyPress>
Updates a stored variable's value to a new value.
<updateVar name="variableName" value="newValue" type="variableType" />
Updates a stored global variable's value to a new value.
<updateGlobalVar name="variableName" value="newValue" type="variableType" />
Adds, substracts, multiples or divides the stored variable's value by a value.
<addVar name="variableName" value="valueToAdd" type="variableType" />
<subVar name="variableName" value="valueToSubtract" type="variableType" />
<!-- Etc. -->
Adds, substracts, multiples or divides the stored global variable's value by a value.
<addGlobalVar name="variableName" value="valueToAdd" type="variableType" />
<subGlobalVar name="variableName" value="valueToSubtract" type="variableType" />
<!-- Etc. -->
Changes sprite to new sprite.
<changeSprite name="pathToSpriteTexture" />
Runs commands on stored entity instead of current entity.
<onEntity name="entityName">
<!-- Do commands -->
</onEntity>
Calls custom function. If done in a onEntity command, will call function in that's entity's custom script.
<callFunction name="yourFunctionName" />
<yourFunctionName>
<!-- Do commands -->
</yourFunctionName>
Move an entity in a direction.
<moveEntity x="0.0" y="1.0" z="0.0" />
Same as moveEntity, but uses the values stored in the variables referenced by x, y, and z, instead of float literals.
<moveEntityByVars x="nameOfXFloatVariable" y="nameOfYFloatVariable" z="nameOfZFloatVariable" />
Set the entity's active.
<setActive value="true" />
Deletes current entity from scene.
<removeEntity />
Set the entity's position to the current entity's position.
<matchEntityPos name="nameOfEntityVariable" />
Finds the distance between the current entity and the one referenced by name. Stores the result in the float variable referenced by var.
<distanceTo name="entityVariableName" var="floatVariableToStoreIn"/>
Find the direction from the current entity towards the entity referenced by name. Stores the result in the two float variables referenced by x and y.
<vectorTo name="entityVariableName" x="floatVariableToStoreXValueIn" y="floatVariableToStoreYValueIn"/>
Logs the value to a log file. Due to limitations only can log strings and not variables.
<log value="stringToSendToLogFile" />