File size: 10,346 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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 |
class DebugModifierData
{
string m_Name;
int m_ID;
void DebugModifierData( string name, int id )
{
m_Name = name;
m_ID = id;
}
string GetName()
{
return m_Name;
}
int GetID()
{
return m_ID;
}
}
class HudDebugWinCharModifiers extends HudDebugWinBase
{
protected Widget m_WgtModifiersContent;
protected ref array<ref Widget> m_ModifierWidgets;
protected ref map<Widget, ref DebugModifierData> m_ModifierWidgetData;
protected PluginDeveloperSync m_PluginDeveloperSync;
protected Widget m_WgtDetailedInfo;
protected TextWidget m_WgtDetailedInfoText;
protected int m_DetailedInfoIndex;
//m_RPCSent
//============================================
// HudDebugWinCharModifiers
//============================================
void HudDebugWinCharModifiers( Widget widget_root )
{
m_WgtRoot = widget_root;
m_WgtModifiersContent = Widget.Cast( m_WgtRoot.FindAnyWidget( "pnl_CharModifiers_Values" ) );
m_ModifierWidgets = new array<ref Widget>;
m_ModifierWidgetData = new map<Widget, ref DebugModifierData>;
m_PluginDeveloperSync = PluginDeveloperSync.Cast( GetPlugin( PluginDeveloperSync ) );
}
void ~HudDebugWinCharModifiers()
{
SetUpdate( false );
}
//============================================
// GetWinType
//============================================
override int GetType()
{
return HudDebug.HUD_WIN_CHAR_MODIFIERS;
}
//============================================
// Update
//============================================
override void SetUpdate( bool state )
{
//Disable update on server (PluginDeveloperSync)
PlayerBase player = PlayerBase.Cast( GetGame().GetPlayer() );
//if client, send RPC
if ( GetGame().IsClient() )
{
ref Param1<bool> params = new Param1<bool>( state );
if ( player )
{
player.RPCSingleParam( ERPCs.DEV_MODS_UPDATE, params, true );
SetRPCSent();
}
}
//else set directly
else
{
if ( m_PluginDeveloperSync )
{
m_PluginDeveloperSync.EnableUpdate( state, ERPCs.DEV_MODS_UPDATE, player );
}
}
}
override void Update()
{
super.Update();
Refresh();
}
//============================================
// Show / Hide
//============================================
override void Show()
{
super.Show();
//Print("Show()");
SetUpdate( true );
}
override void Hide()
{
super.Hide();
//Print("Hide()");
SetUpdate( false );
}
void Refresh()
{
SetModifiers();
if(m_WgtDetailedInfo && m_WgtDetailedInfo.IsVisible())
{
if(!m_WgtDetailedInfoText)
m_WgtDetailedInfoText = TextWidget.Cast(m_WgtDetailedInfo.FindAnyWidget( "TextWidget" ));
m_WgtDetailedInfoText.SetText(m_PluginDeveloperSync.m_PlayerModsDetailedSynced);
}
}
//============================================
// FitWindow
//============================================
void FitWindow()
{
float title_size = 20;
float spacing = 20;
//get wgt content size values
float wgt_content_size_x;
float wgt_content_size_y;
m_WgtModifiersContent.GetSize( wgt_content_size_x, wgt_content_size_y );
//get wgt root size values
float wgt_root_size_x;
float wgt_root_size_y;
m_WgtRoot.GetSize( wgt_root_size_x, wgt_root_size_y );
//calculate new Y size
float new_size_y = title_size + wgt_content_size_y + spacing;
//set size
m_WgtRoot.SetSize( wgt_root_size_x, new_size_y );
}
//============================================
// Display Modifiers
//============================================
void SetModifiers()
{
//clear window
ClearModifiers();
if ( m_PluginDeveloperSync.m_PlayerModsSynced.Count() > 0 )
{
//set active mods
for ( int i = 0; i < m_PluginDeveloperSync.m_PlayerModsSynced.Count(); ++i )
{
SyncedValueModifier synced_value = m_PluginDeveloperSync.m_PlayerModsSynced.Get( i );
AddModifier( synced_value.GetName(), synced_value.GetID(), synced_value.GetActive(),synced_value.GetLocked() );
}
}
FitWindow();
}
void AddModifier( string name, int id, bool active, bool locked )
{
//create widget
Widget widget = GetGame().GetWorkspace().CreateWidgets( "gui/layouts/debug/day_z_hud_debug_modifier.layout", m_WgtModifiersContent );
//add to widget array (for clearing purposes)
m_ModifierWidgets.Insert( widget );
//set widget name
ButtonWidget mod_name_text = ButtonWidget.Cast( widget.FindAnyWidget( "TextModifierName" ) );
mod_name_text.SetText( name );
if ( active )
{
mod_name_text.SetTextColor( ARGB( 255, 0, 255, 0 ) );
}
else
{
mod_name_text.SetTextColor( ARGB( 255, 255, 0, 0 ) );
}
//set set data for interactive parts (modifier ID should be enough)
DebugModifierData data = new DebugModifierData( name, id );
Widget modifier_button = widget.FindAnyWidget( "TextModifierName" );
m_ModifierWidgetData.Insert( modifier_button, data );
//Activate button
Widget activate_button = widget.FindAnyWidget( "ButtonModifierActivate" );
m_ModifierWidgetData.Insert( activate_button, data );
//Deactivate button
Widget deactivate_button = widget.FindAnyWidget( "ButtonModifierDeactivate" );
m_ModifierWidgetData.Insert( deactivate_button, data );
//Lock checkbox
Widget checkbox_widget = widget.FindAnyWidget( "CheckBoxLock" );
m_ModifierWidgetData.Insert( checkbox_widget, data );
//set lock based on checkbox value
CheckBoxWidget checkbox = CheckBoxWidget.Cast( checkbox_widget );
checkbox.SetChecked( locked );
AutoHeightSpacer WgtModifiersContent_panel_script;
m_WgtModifiersContent.GetScript( WgtModifiersContent_panel_script );
WgtModifiersContent_panel_script.Update();
}
void ClearModifiers()
{
//clear widget data
m_ModifierWidgetData.Clear();
//destroy all modifier widgets
for ( int i = 0; i < m_ModifierWidgets.Count(); ++i )
{
delete m_ModifierWidgets.Get( i );
}
m_ModifierWidgets.Clear();
}
//============================================
// OnClick
//============================================
bool OnClick( Widget w, int x, int y, int button )
{
if ( w )
{
if ( w.GetName() == "TextModifierName" )
{
//Print("clicked");
DebugModifierData bc_data = m_ModifierWidgetData.Get( w );
//Print( bc_data.GetID() );
if(bc_data.GetID() == m_DetailedInfoIndex)//repeated request --> hide
{
if(m_WgtDetailedInfo && m_WgtDetailedInfo.IsVisible())
{
m_WgtDetailedInfo.Show(false);
}
m_DetailedInfoIndex = 0;
}
else
{
if(!m_WgtDetailedInfo)
m_WgtDetailedInfo = GetGame().GetWorkspace().CreateWidgets( "gui/layouts/debug/day_z_hud_debug_modifier_detailed.layout");
if(!m_WgtDetailedInfo.IsVisible())
{
m_WgtDetailedInfo.Show(true);
}
m_DetailedInfoIndex = bc_data.GetID();
}
if( m_WgtDetailedInfoText )
m_WgtDetailedInfoText.SetText("");
m_PluginDeveloperSync.m_PlayerModsDetailedSynced = "";
RequestDetailedInfo( bc_data.GetID());
return true;
}
//Button activate
if ( w.GetName() == "ButtonModifierActivate" )
{
DebugModifierData ba_data = m_ModifierWidgetData.Get( w );
//activate
ActivateModifier( ba_data.GetID() );
//force update
m_PluginDeveloperSync.Update();
return true;
}
//Button deactivate
else if ( w.GetName() == "ButtonModifierDeactivate" )
{
DebugModifierData bd_data = m_ModifierWidgetData.Get( w );
//deactivate
DeactivateModifier( bd_data.GetID() );
//force update
m_PluginDeveloperSync.Update();
return true;
}
//Lock checkbox
else if ( w.GetName() == "CheckBoxLock" )
{
DebugModifierData lcb_data = m_ModifierWidgetData.Get( w );
CheckBoxWidget checkbox = CheckBoxWidget.Cast( w );
//set lock
LockModifier( lcb_data.GetID(), checkbox.IsChecked() );
//force update
m_PluginDeveloperSync.Update();
return true;
}
else if ( w.GetName() == "ResetModifiers" )
{
ResetModifiers();
return true;
}
}
return false;
}
//============================================
// Actions
//============================================
void ResetModifiers()
{
PlayerBase player = PlayerBase.Cast( GetGame().GetPlayer() );
//if client, send RPC
ref Param1<bool> params = new Param1<bool>( false );
if ( player )
{
player.RPCSingleParam( ERPCs.DEV_RPC_MODS_RESET, params, true );
}
}
void RequestDetailedInfo( int id )
{
//Disable update on server (PluginDeveloperSync)
PlayerBase player = PlayerBase.Cast( GetGame().GetPlayer() );
//if client, send RPC
if ( GetGame().IsClient() )
{
ref Param1<int> params = new Param1<int>( id );
if ( player )
{
player.RPCSingleParam( ERPCs.DEV_RPC_MODS_DETAILED, params, true );
}
}
//else set directly
else
{
m_PluginDeveloperSync.RequestDetailedInfo( id , player);
}
}
void ActivateModifier( int id )
{
//Disable update on server (PluginDeveloperSync)
PlayerBase player = PlayerBase.Cast( GetGame().GetPlayer() );
//if client, send RPC
if ( GetGame().IsClient() )
{
ref Param1<int> params = new Param1<int>( id );
if ( player )
{
player.RPCSingleParam( ERPCs.DEV_RPC_MODS_ACTIVATE, params, true );
}
}
//else set directly
else
{
m_PluginDeveloperSync.ActivateModifier( id );
}
}
void DeactivateModifier( int id )
{
//Disable update on server (PluginDeveloperSync)
PlayerBase player = PlayerBase.Cast( GetGame().GetPlayer() );
//if client, send RPC
if ( GetGame().IsClient() )
{
ref Param1<int> params = new Param1<int>( id );
if ( player )
{
player.RPCSingleParam( ERPCs.DEV_RPC_MODS_DEACTIVATE, params, true );
}
}
//else set directly
else
{
m_PluginDeveloperSync.DeactivateModifier( id );
}
}
void LockModifier( int id, bool state )
{
//Disable update on server (PluginDeveloperSync)
PlayerBase player = PlayerBase.Cast( GetGame().GetPlayer() );
//if client, send RPC
if ( GetGame().IsClient() )
{
ref Param2<int, bool> params = new Param2<int, bool>( id, state );
if ( player )
{
player.RPCSingleParam( ERPCs.DEV_RPC_MODS_LOCK, params, true );
}
}
//else set directly
else
{
m_PluginDeveloperSync.LockModifier( id, state );
}
}
}
|