File size: 3,031 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 |
class NoteMenu extends UIScriptedMenu
{
protected MultilineEditBoxWidget m_edit;
protected HtmlWidget m_html;
protected ButtonWidget m_confirm_button;
protected ItemBase m_Paper;
protected EntityAI m_Pen;
protected bool m_IsWriting;
//protected int m_Handwriting;
protected int m_SymbolCount;
protected string m_PenColor; //color in hex-code format, transferred as string. Could be transferred as int or array<int, bool>?
void NoteMenu()
{
MissionGameplay mission = MissionGameplay.Cast(GetGame().GetMission());
if (mission)
{
IngameHud hud = IngameHud.Cast(mission.GetHud());
if (hud)
{
hud.ShowHudUI(false);
}
}
}
void ~NoteMenu()
{
MissionGameplay mission = MissionGameplay.Cast(GetGame().GetMission());
if (mission)
{
IngameHud hud = IngameHud.Cast(mission.GetHud());
if (hud)
{
hud.ShowHudUI(true);
}
}
}
override void InitNoteRead(string text = "")
{
m_IsWriting = false;
if (m_edit)
{
m_edit.Show(false);
}
if (m_html)
{
//TODO add text formating here. Just text string for now
if (text)
{
m_html.Show(true);
m_html.SetText(text);
m_SymbolCount = text.Length(); //string.LengthUtf8() ?
//m_html.SetText("<html><body><p>" + text + "</p></body></html>");
}
}
m_confirm_button.Show(false);
}
override void InitNoteWrite(EntityAI paper, EntityAI pen, string text = "")
{
m_IsWriting = true;
if (m_edit)
{
m_Paper = ItemBase.Cast(paper);
m_Pen = pen;
m_PenColor = m_Pen.ConfigGetString("writingColor");
if (m_PenColor == "")
{
m_PenColor = "#000000";
}
//m_Handwriting = handwriting;
m_edit.Show(true);
m_edit.SetText(text);
}
if (m_html)
{
m_html.Show(false);
}
m_confirm_button.Show(true);
}
override Widget Init()
{
layoutRoot = GetGame().GetWorkspace().CreateWidgets("gui/layouts/day_z_inventory_note.layout");
m_edit = MultilineEditBoxWidget.Cast(layoutRoot.FindAnyWidget("EditWidget"));
m_html = HtmlWidget.Cast(layoutRoot.FindAnyWidget("HtmlWidget"));
m_confirm_button = ButtonWidget.Cast(layoutRoot.FindAnyWidgetById(IDC_OK));
return layoutRoot;
}
override bool OnClick(Widget w, int x, int y, int button)
{
super.OnClick(w, x, y, button);
/* string txt;
m_edit.GetText(txt);
Print(m_edit.GetLinesCount());
Print(txt);
Print(txt.Length());*/
switch (w.GetUserID())
{
case IDC_CANCEL:
Close();
return true;
case IDC_OK:
if (m_Paper && m_Pen && m_IsWriting)
{
string edit_text;
m_edit.GetText(edit_text);
edit_text = MiscGameplayFunctions.SanitizeString(edit_text);
// Print("edit_text: " + edit_text);
Param1<string> text = new Param1<string>(edit_text);
m_Paper.RPCSingleParam(ERPCs.RPC_WRITE_NOTE_CLIENT, text, true);
}
Close();
return true;
}
return false;
}
override void Update(float timeslice)
{
super.Update(timeslice);
if (GetGame() && GetUApi().GetInputByID(UAUIBack).LocalPress())
{
Close();
}
}
}
|