156 lines
3.6 KiB
C#
156 lines
3.6 KiB
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Torque Game Engine
|
||
|
//
|
||
|
// Copyright (c) 2001 GarageGames.Com
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Override base controls
|
||
|
GuiButtonProfile.soundButtonOver = AudioButtonOver;
|
||
|
GuiButtonProfile.soundButtonDown = AudioButtonDown;
|
||
|
|
||
|
GuiDefaultProfile.soundButtonDown = AudioButtonDown;
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Chat Hud profiles
|
||
|
|
||
|
|
||
|
new GuiControlProfile ("ChatHudMessageProfile")
|
||
|
{
|
||
|
fontType = "Arial";
|
||
|
fontSize = 16;
|
||
|
fontColor = "255 255 0"; // default color (death msgs, scoring, inventory)
|
||
|
fontColors[1] = "4 235 105"; // client join/drop, tournament mode
|
||
|
fontColors[2] = "219 200 128"; // gameplay, admin/voting, pack/deployable
|
||
|
fontColors[3] = "77 253 95"; // team chat, spam protection message, client tasks
|
||
|
fontColors[4] = "40 231 240"; // global chat
|
||
|
fontColors[5] = "200 200 50 200"; // used in single player game
|
||
|
// WARNING! Colors 6-9 are reserved for name coloring
|
||
|
autoSizeWidth = true;
|
||
|
autoSizeHeight = true;
|
||
|
};
|
||
|
|
||
|
new GuiControlProfile ("ChatHudScrollProfile")
|
||
|
{
|
||
|
opaque = false;
|
||
|
bitmap = "common/ui/darkScroll";
|
||
|
hasBitmapArray = true;
|
||
|
};
|
||
|
|
||
|
|
||
|
new GuiControlProfile (GuiTPTextEditProfile)
|
||
|
{
|
||
|
opaque = false;
|
||
|
fillColor = "255 255 255";
|
||
|
fillColorHL = "128 128 128";
|
||
|
border = false;
|
||
|
borderColor = "0 0 0";
|
||
|
fontColor = "0 0 0";
|
||
|
fontColorHL = "255 255 255";
|
||
|
fontColorNA = "128 128 128";
|
||
|
textOffset = "0 2";
|
||
|
autoSizeWidth = false;
|
||
|
autoSizeHeight = true;
|
||
|
tab = true;
|
||
|
canKeyFocus = true;
|
||
|
};
|
||
|
|
||
|
new GuiControlProfile (OverlayScreenProfile)
|
||
|
{
|
||
|
opaque = true;
|
||
|
fillColor = "0 0 0 96";
|
||
|
fillColorHL = "128 128 128";
|
||
|
border = false;
|
||
|
borderColor = "0 0 0";
|
||
|
fontColor = "0 0 0";
|
||
|
fontColorHL = "255 255 255";
|
||
|
fontColorNA = "128 128 128";
|
||
|
textOffset = "0 2";
|
||
|
autoSizeWidth = false;
|
||
|
autoSizeHeight = true;
|
||
|
tab = true;
|
||
|
canKeyFocus = true;
|
||
|
};
|
||
|
|
||
|
new GuiControlProfile (GuiBigTextEditProfile)
|
||
|
{
|
||
|
fontType = "DomCasualD";
|
||
|
fontSize = 32;
|
||
|
opaque = false;
|
||
|
fillColor = "255 255 255";
|
||
|
fillColorHL = "128 128 128";
|
||
|
border = false;
|
||
|
borderColor = "0 0 0";
|
||
|
fontColor = "0 0 0";
|
||
|
fontColorHL = "255 255 255";
|
||
|
fontColorNA = "128 128 128";
|
||
|
textOffset = "0 2";
|
||
|
autoSizeWidth = false;
|
||
|
autoSizeHeight = true;
|
||
|
tab = true;
|
||
|
canKeyFocus = true;
|
||
|
};
|
||
|
|
||
|
new GuiControlProfile (BevelPurpleProfile)
|
||
|
{
|
||
|
// fill color
|
||
|
opaque = true;
|
||
|
border = 2;
|
||
|
fillColor = "161 150 229";
|
||
|
fillColorHL = "255 0 0";
|
||
|
fillColorNA = "0 0 255";
|
||
|
|
||
|
// border color
|
||
|
borderColor = "0 255 0";
|
||
|
borderColorNA = "92 86 131";
|
||
|
|
||
|
textOffset = "6 6";
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Common Hud profiles
|
||
|
|
||
|
new GuiControlProfile ("HudScrollProfile")
|
||
|
{
|
||
|
opaque = false;
|
||
|
border = true;
|
||
|
borderColor = "0 255 0";
|
||
|
bitmap = "common/ui/darkScroll";
|
||
|
hasBitmapArray = true;
|
||
|
};
|
||
|
|
||
|
new GuiControlProfile ("HudTextProfile")
|
||
|
{
|
||
|
opaque = false;
|
||
|
fillColor = "128 128 128";
|
||
|
fontColor = "0 255 0";
|
||
|
border = true;
|
||
|
borderColor = "0 255 0";
|
||
|
};
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Center and bottom print
|
||
|
|
||
|
new GuiControlProfile ("CenterPrintProfile")
|
||
|
{
|
||
|
opaque = false;
|
||
|
fillColor = "128 128 128";
|
||
|
fontColor = "0 255 0";
|
||
|
border = true;
|
||
|
borderColor = "0 255 0";
|
||
|
};
|
||
|
|
||
|
new GuiControlProfile ("CenterPrintTextProfile")
|
||
|
{
|
||
|
opaque = false;
|
||
|
fontType = "Arial";
|
||
|
fontSize = 12;
|
||
|
fontColor = "0 255 0";
|
||
|
};
|
||
|
|
||
|
|