83 lines
2.3 KiB
Plaintext
83 lines
2.3 KiB
Plaintext
//--- OBJECT WRITE BEGIN ---
|
|
new GuiControl(EndGameGui) {
|
|
profile = "GuiDefaultProfile";
|
|
horizSizing = "width";
|
|
vertSizing = "height";
|
|
position = "0 0";
|
|
extent = "640 480";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
helpTag = "0";
|
|
useVariable = "0";
|
|
tile = "0";
|
|
|
|
new GuiBitmapCtrl() {
|
|
profile = "GuiDefaultProfile";
|
|
horizSizing = "center";
|
|
vertSizing = "center";
|
|
position = "77 9";
|
|
extent = "485 461";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
helpTag = "0";
|
|
bitmap = "./endgame/background.png";
|
|
wrap = "0";
|
|
|
|
new GuiMLTextCtrl(EndGameGuiDescription) {
|
|
profile = "GuiMLTextProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "48 20";
|
|
extent = "429 384";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
helpTag = "0";
|
|
lineSpacing = "2";
|
|
allowColorChars = "0";
|
|
maxChars = "-1";
|
|
};
|
|
new GuiBitmapButtonCtrl(EndGameContinueButton) {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "333 386";
|
|
extent = "113 47";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
command = "setPlayMissionGui();";
|
|
accelerator = "enter";
|
|
helpTag = "0";
|
|
text = "play";
|
|
groupNum = "-1";
|
|
buttonType = "PushButton";
|
|
bitmap = "./endgame/continue";
|
|
};
|
|
new GuiBitmapButtonCtrl(EndGameRetryButton) {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "51 388";
|
|
extent = "104 48";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
command = "Canvas.popDialog(EndGameGui);restartLevel();";
|
|
helpTag = "0";
|
|
text = "Prev";
|
|
groupNum = "-1";
|
|
buttonType = "PushButton";
|
|
bitmap = "./endgame/replay";
|
|
};
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END ---
|
|
|
|
function gameIsCompleteSignalForEndGameGui(%probably) {
|
|
if(%probably) {
|
|
EndGameRetryButton.command = "Canvas.popDialog(congratsGui);Canvas.popDialog(EndGameGui);restartLevel();";
|
|
EndGameContinueButton.command = "Canvas.popDialog(EndGameGui);";
|
|
} else {
|
|
EndGameRetryButton.command = "Canvas.popDialog(EndGameGui);restartLevel();";
|
|
EndGameContinueButton.command = "setPlayMissionGui();";
|
|
}
|
|
}
|