File size: 4,869 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
class RespawnDialogue extends UIScriptedMenu
{
const int ID_RESPAWN_CUSTOM = 101;
const int ID_RESPAWN_RANDOM = 102;
//tooltips
protected Widget m_DetailsRoot;
protected TextWidget m_DetailsLabel;
protected RichTextWidget m_DetailsText;
protected Widget m_CustomRespawn;
//helper
protected Widget m_CurrentlyHighlighted;
void RespawnDialogue();
void ~RespawnDialogue();
override Widget Init()
{
layoutRoot = GetGame().GetWorkspace().CreateWidgets("gui/layouts/day_z_respawn_dialogue.layout");
m_DetailsRoot = layoutRoot.FindAnyWidget("menu_details_tooltip");
m_DetailsLabel = TextWidget.Cast(m_DetailsRoot.FindAnyWidget("menu_details_label"));
m_DetailsText = RichTextWidget.Cast(m_DetailsRoot.FindAnyWidget("menu_details_tooltip_content"));
m_CustomRespawn = layoutRoot.FindAnyWidget("respawn_button_custom");
SetFocus(m_CustomRespawn);
return layoutRoot;
}
override void Update(float timeslice)
{
super.Update(timeslice);
if (GetUApi().GetInputByID(UAUIBack).LocalPress() || GetUApi().GetInputByID(UAUIMenu).LocalPress())
Close();
}
override bool OnClick(Widget w, int x, int y, int button)
{
super.OnClick(w, x, y, button);
switch (w.GetUserID())
{
case IDC_CANCEL:
Close();
return true;
case ID_RESPAWN_CUSTOM:
return RequestRespawn(false);
case ID_RESPAWN_RANDOM:
return RequestRespawn(true);
}
return false;
}
override bool OnMouseEnter(Widget w, int x, int y)
{
string tooltip_header = "";
string tooltip_text = "";
ColorHighlight(w);
switch (w.GetUserID())
{
case ID_RESPAWN_RANDOM:
tooltip_header = "#main_menu_respawn_random";
tooltip_text = "#main_menu_respawn_random_tooltip";
break;
case ID_RESPAWN_CUSTOM:
tooltip_header = "#main_menu_respawn_custom";
tooltip_text = "#main_menu_respawn_custom_tooltip";
break;
}
SetTooltipTexts(w, tooltip_header, tooltip_text);
return true;
}
override bool OnMouseLeave(Widget w, Widget enterW, int x, int y)
{
ColorNormal(w);
return true;
}
override void OnShow()
{
super.OnShow();
SetFocus(m_CustomRespawn);
}
override bool OnFocus(Widget w, int x, int y)
{
string tooltip_header = "";
string tooltip_text = "";
if (IsFocusable(w))
{
ColorHighlight(w);
switch (w.GetUserID())
{
case ID_RESPAWN_RANDOM:
tooltip_header = "#main_menu_respawn_random";
tooltip_text = "#main_menu_respawn_random_tooltip";
break;
case ID_RESPAWN_CUSTOM:
tooltip_header = "#main_menu_respawn_custom";
tooltip_text = "#main_menu_respawn_custom_tooltip";
break;
}
SetTooltipTexts(w, tooltip_header, tooltip_text);
return true;
}
SetTooltipTexts(w, tooltip_header, tooltip_text);
return false;
}
override bool OnFocusLost(Widget w, int x, int y)
{
if (IsFocusable(w))
{
ColorNormal(w);
return true;
}
return false;
}
bool IsFocusable(Widget w)
{
if (w)
{
if (w.GetUserID() == IDC_CANCEL || w.GetUserID() == ID_RESPAWN_CUSTOM || w.GetUserID() == ID_RESPAWN_RANDOM);
return true;
}
return false;
}
protected void ColorHighlight(Widget w)
{
if (!w)
return;
if (m_CurrentlyHighlighted != w)
{
if (m_CurrentlyHighlighted)
ColorNormal(m_CurrentlyHighlighted);
m_CurrentlyHighlighted = w;
}
ButtonSetColor(w, ARGB(255, 0, 0, 0));
ButtonSetTextColor(w, ARGB(255, 255, 0, 0));
}
protected void ColorNormal(Widget w)
{
if (!w)
return;
ButtonSetColor(w, ARGB(0, 0, 0, 0));
ButtonSetTextColor(w, ARGB(255, 255, 255, 255));
}
protected void ButtonSetColor(Widget w, int color)
{
Widget panel = w.FindWidget(w.GetName() + "_panel");
if (panel)
panel.SetColor(color);
}
protected void ButtonSetTextColor(Widget w, int color)
{
TextWidget label = TextWidget.Cast(w.FindAnyWidget(w.GetName() + "_label"));
if (label)
label.SetColor(color);
}
void SetTooltipTexts(Widget w, string header = "", string desc = "")
{
bool show = header != "" && desc != "";
m_DetailsRoot.Show(show);
m_DetailsLabel.SetText(header);
m_DetailsText.SetText(desc);
m_DetailsText.Update();
m_DetailsLabel.Update();
m_DetailsRoot.Update();
}
bool RequestRespawn(bool random)
{
IngameHud.Cast(GetGame().GetMission().GetHud()).InitBadgesAndNotifiers();
Man player = GetGame().GetPlayer();
if (player && (player.GetPlayerState() == EPlayerStates.ALIVE && !player.IsUnconscious()))
return false;
#ifdef PLATFORM_CONSOLE
InGameMenuXbox menu_ingame = InGameMenuXbox.Cast(GetGame().GetUIManager().FindMenu(MENU_INGAME));
#else
InGameMenu menu_ingame = InGameMenu.Cast(GetGame().GetUIManager().FindMenu(MENU_INGAME));
#endif
if (!menu_ingame)
return false;
menu_ingame.MenuRequestRespawn(this, random);
return true;
}
}
|