mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-23 06:04:44 +00:00
Reorged the canvas handling of gamepad inputs for the axis and triggers to use the SI_ versions in the right spots Fixed issue where pause menu would be hidden and not display again Made the pause menu active from the gamepad start button rather than back
326 lines
11 KiB
C#
326 lines
11 KiB
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) 2012 GarageGames, LLC
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to
|
|
// deal in the Software without restriction, including without limitation the
|
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
// sell copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
// IN THE SOFTWARE.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
// Cleanup Dialog created by 'core'
|
|
if( isObject( MessagePopupDlg ) )
|
|
MessagePopupDlg.delete();
|
|
if( isObject( toolsMessageBoxYesNoDlg ) )
|
|
toolsMessageBoxYesNoDlg.delete();
|
|
if( isObject( toolsMessageBoxYesNoCancelDlg ) )
|
|
toolsMessageBoxYesNoCancelDlg.delete();
|
|
if( isObject( toolsMessageBoxOKCancelDetailsDlg ) )
|
|
toolsMessageBoxOKCancelDetailsDlg.delete();
|
|
if( isObject( toolsMessageBoxOKCancelDlg ) )
|
|
toolsMessageBoxOKCancelDlg.delete();
|
|
if( isObject( toolsMessageBoxOKDlg ) )
|
|
toolsMessageBoxOKDlg.delete();
|
|
if( isObject( IODropdownDlg ) )
|
|
IODropdownDlg.delete();
|
|
|
|
|
|
// Load Editor Dialogs
|
|
exec("./messageBoxOK.ed.gui");
|
|
exec("./messageBoxYesNo.ed.gui");
|
|
exec("./messageBoxYesNoCancel.ed.gui");
|
|
exec("./messageBoxOKCancel.ed.gui");
|
|
exec("./messageBoxOKCancelDetailsDlg.ed.gui");
|
|
exec("./messagePopup.ed.gui");
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
// Message Sound
|
|
// --------------------------------------------------------------------
|
|
/*new SFXDescription(toolsMessageBoxAudioDescription)
|
|
{
|
|
volume = 1.0;
|
|
isLooping = false;
|
|
is3D = false;
|
|
channel = $GuiAudioType;
|
|
};
|
|
|
|
new SFXProfile(toolsMessageBoxBeep)
|
|
{
|
|
filename = "./toolsMessageBoxSound";
|
|
description = toolsMessageBoxAudioDescription;
|
|
preload = true;
|
|
};*/
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
// messageCallback
|
|
// Calls a callback passed to a message box.
|
|
//---------------------------------------------------------------------------------------------
|
|
function messageCallback(%dlg, %callback)
|
|
{
|
|
Canvas.popDialog(%dlg);
|
|
eval(%callback);
|
|
}
|
|
|
|
//The # in the function passed replaced with the output
|
|
//of the preset menu.
|
|
function IOCallback(%dlg, %callback)
|
|
{
|
|
%id = IODropdownMenu.getSelected();
|
|
%text = IODropdownMenu.getTextById(%id);
|
|
%callback = strreplace(%callback, "#", %text);
|
|
eval(%callback);
|
|
|
|
Canvas.popDialog(%dlg);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
// MBSetText
|
|
// Sets the text of a message box and resizes it to accomodate the new string.
|
|
//---------------------------------------------------------------------------------------------
|
|
function MBSetText(%text, %frame, %msg)
|
|
{
|
|
// Get the extent of the text box.
|
|
%ext = %text.getExtent();
|
|
// Set the text in the center of the text box.
|
|
%text.setText("<just:center>" @ %msg);
|
|
// Force the textbox to resize itself vertically.
|
|
%text.forceReflow();
|
|
// Grab the new extent of the text box.
|
|
%newExtent = %text.getExtent();
|
|
|
|
// Get the vertical change in extent.
|
|
%deltaY = getWord(%newExtent, 1) - getWord(%ext, 1);
|
|
|
|
// Resize the window housing the text box.
|
|
%windowPos = %frame.getPosition();
|
|
%windowExt = %frame.getExtent();
|
|
%frame.resize(getWord(%windowPos, 0), getWord(%windowPos, 1) - (%deltaY / 2),
|
|
getWord(%windowExt, 0), getWord(%windowExt, 1) + %deltaY);
|
|
|
|
%frame.canMove = "0";
|
|
//%frame.canClose = "0";
|
|
%frame.resizeWidth = "0";
|
|
%frame.resizeHeight = "0";
|
|
%frame.canMinimize = "0";
|
|
%frame.canMaximize = "0";
|
|
|
|
//sfxPlayOnce( toolsMessageBoxBeep );
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
// Various message box display functions. Each one takes a window title, a message, and a
|
|
// callback for each button.
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
function toolsMessageBoxOK(%title, %message, %callback)
|
|
{
|
|
MBOKFrame.text = %title;
|
|
Canvas.pushDialog(toolsMessageBoxOKDlg);
|
|
MBSetText(MBOKText, MBOKFrame, %message);
|
|
toolsMessageBoxOKDlg.callback = %callback;
|
|
}
|
|
|
|
function toolsMessageBoxOKDlg::onSleep( %this )
|
|
{
|
|
%this.callback = "";
|
|
}
|
|
|
|
function toolsMessageBoxOKCancel(%title, %message, %callback, %cancelCallback)
|
|
{
|
|
MBOKCancelFrame.text = %title;
|
|
Canvas.pushDialog(toolsMessageBoxOKCancelDlg);
|
|
MBSetText(MBOKCancelText, MBOKCancelFrame, %message);
|
|
toolsMessageBoxOKCancelDlg.callback = %callback;
|
|
toolsMessageBoxOKCancelDlg.cancelCallback = %cancelCallback;
|
|
}
|
|
|
|
function toolsMessageBoxOKCancelDlg::onSleep( %this )
|
|
{
|
|
%this.callback = "";
|
|
}
|
|
|
|
function toolsMessageBoxOKCancelDetails(%title, %message, %details, %callback, %cancelCallback)
|
|
{
|
|
if(%details $= "")
|
|
{
|
|
MBOKCancelDetailsButton.setVisible(false);
|
|
}
|
|
|
|
MBOKCancelDetailsScroll.setVisible(false);
|
|
|
|
MBOKCancelDetailsFrame.setText( %title );
|
|
|
|
Canvas.pushDialog(toolsMessageBoxOKCancelDetailsDlg);
|
|
MBSetText(MBOKCancelDetailsText, MBOKCancelDetailsFrame, %message);
|
|
MBOKCancelDetailsInfoText.setText(%details);
|
|
|
|
%textExtent = MBOKCancelDetailsText.getExtent();
|
|
%textExtentY = getWord(%textExtent, 1);
|
|
%textPos = MBOKCancelDetailsText.getPosition();
|
|
%textPosY = getWord(%textPos, 1);
|
|
|
|
%extentY = %textPosY + %textExtentY + 65;
|
|
|
|
MBOKCancelDetailsInfoText.setExtent(285, 128);
|
|
|
|
MBOKCancelDetailsFrame.setExtent(300, %extentY);
|
|
|
|
toolsMessageBoxOKCancelDetailsDlg.callback = %callback;
|
|
toolsMessageBoxOKCancelDetailsDlg.cancelCallback = %cancelCallback;
|
|
|
|
MBOKCancelDetailsFrame.defaultExtent = MBOKCancelDetailsFrame.getExtent();
|
|
}
|
|
|
|
function MBOKCancelDetailsToggleInfoFrame()
|
|
{
|
|
if(!MBOKCancelDetailsScroll.isVisible())
|
|
{
|
|
MBOKCancelDetailsScroll.setVisible(true);
|
|
MBOKCancelDetailsText.forceReflow();
|
|
%textExtent = MBOKCancelDetailsText.getExtent();
|
|
%textExtentY = getWord(%textExtent, 1);
|
|
%textPos = MBOKCancelDetailsText.getPosition();
|
|
%textPosY = getWord(%textPos, 1);
|
|
|
|
%verticalStretch = %textExtentY;
|
|
|
|
if((%verticalStretch > 260) || (%verticalStretch < 0))
|
|
%verticalStretch = 260;
|
|
|
|
%extent = MBOKCancelDetailsFrame.defaultExtent;
|
|
%height = getWord(%extent, 1);
|
|
|
|
%posY = %textPosY + %textExtentY + 10;
|
|
%posX = getWord(MBOKCancelDetailsScroll.getPosition(), 0);
|
|
MBOKCancelDetailsScroll.setPosition(%posX, %posY);
|
|
MBOKCancelDetailsScroll.setExtent(getWord(MBOKCancelDetailsScroll.getExtent(), 0), %verticalStretch);
|
|
MBOKCancelDetailsFrame.setExtent(300, %height + %verticalStretch + 10);
|
|
} else
|
|
{
|
|
%extent = MBOKCancelDetailsFrame.defaultExtent;
|
|
%width = getWord(%extent, 0);
|
|
%height = getWord(%extent, 1);
|
|
MBOKCancelDetailsFrame.setExtent(%width, %height);
|
|
MBOKCancelDetailsScroll.setVisible(false);
|
|
}
|
|
}
|
|
|
|
function toolsMessageBoxOKCancelDetailsDlg::onSleep( %this )
|
|
{
|
|
%this.callback = "";
|
|
}
|
|
|
|
function toolsMessageBoxYesNo(%title, %message, %yesCallback, %noCallback)
|
|
{
|
|
MBYesNoFrame.text = %title;
|
|
toolsMessageBoxYesNoDlg.profile = "GuiOverlayProfile";
|
|
Canvas.pushDialog(toolsMessageBoxYesNoDlg);
|
|
MBSetText(MBYesNoText, MBYesNoFrame, %message);
|
|
toolsMessageBoxYesNoDlg.yesCallBack = %yesCallback;
|
|
toolsMessageBoxYesNoDlg.noCallback = %noCallBack;
|
|
}
|
|
|
|
function toolsMessageBoxYesNoCancel(%title, %message, %yesCallback, %noCallback, %cancelCallback)
|
|
{
|
|
MBYesNoCancelFrame.text = %title;
|
|
toolsMessageBoxYesNoDlg.profile = "GuiOverlayProfile";
|
|
Canvas.pushDialog(toolsMessageBoxYesNoCancelDlg);
|
|
MBSetText(MBYesNoCancelText, MBYesNoCancelFrame, %message);
|
|
toolsMessageBoxYesNoCancelDlg.yesCallBack = %yesCallback;
|
|
toolsMessageBoxYesNoCancelDlg.noCallback = %noCallBack;
|
|
toolsMessageBoxYesNoCancelDlg.cancelCallback = %cancelCallback;
|
|
}
|
|
|
|
function toolsMessageBoxYesNoDlg::onSleep( %this )
|
|
{
|
|
%this.yesCallback = "";
|
|
%this.noCallback = "";
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
// MessagePopup
|
|
// Displays a message box with no buttons. Disappears after %delay milliseconds.
|
|
//---------------------------------------------------------------------------------------------
|
|
function MessagePopup(%title, %message, %delay)
|
|
{
|
|
// Currently two lines max.
|
|
MessagePopFrame.setText(%title);
|
|
Canvas.pushDialog(MessagePopupDlg);
|
|
MBSetText(MessagePopText, MessagePopFrame, %message);
|
|
if (%delay !$= "")
|
|
schedule(%delay, 0, CloseMessagePopup);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
// IODropdown
|
|
// By passing in a simgroup or simset, the user will be able to choose a child of that group
|
|
// through a guiPopupMenuCtrl
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
function IODropdown(%title, %message, %simgroup, %callback, %cancelCallback)
|
|
{
|
|
IODropdownFrame.text = %title;
|
|
Canvas.pushDialog(IODropdownDlg);
|
|
MBSetText(IODropdownText, IODropdownFrame, %message);
|
|
|
|
if(isObject(%simgroup))
|
|
{
|
|
for(%i = 0; %i < %simgroup.getCount(); %i++)
|
|
IODropdownMenu.add(%simgroup.getObject(%i).getName());
|
|
|
|
}
|
|
|
|
IODropdownMenu.sort();
|
|
IODropdownMenu.setFirstSelected(0);
|
|
|
|
IODropdownDlg.callback = %callback;
|
|
IODropdownDlg.cancelCallback = %cancelCallback;
|
|
}
|
|
|
|
function IODropdownDlg::onSleep( %this )
|
|
{
|
|
%this.callback = "";
|
|
%this.cancelCallback = "";
|
|
IODropdownMenu.clear();
|
|
}
|
|
|
|
function CloseMessagePopup()
|
|
{
|
|
Canvas.popDialog(MessagePopupDlg);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
// "Old" message box function aliases for backwards-compatibility.
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
function toolsMessageBoxOKOld( %title, %message, %callback )
|
|
{
|
|
toolsMessageBoxOK( %title, %message, %callback );
|
|
}
|
|
function toolsMessageBoxOKCancelOld( %title, %message, %callback, %cancelCallback )
|
|
{
|
|
toolsMessageBoxOKCancel( %title, %message, %callback, %cancelCallback );
|
|
}
|
|
function toolsMessageBoxYesNoOld( %title, %message, %yesCallback, %noCallback )
|
|
{
|
|
toolsMessageBoxYesNo( %title, %message, %yesCallback, %noCallback );
|
|
}
|