File size: 3,251 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 |
class CableReel extends ItemBase
{
bool m_ForceIntoHands;
static const string SEL_CORD_FOLDED = "cord_folded";
static const string SEL_CORD_PLUGGED = "cord_plugged";
void CableReel ()
{
m_ForceIntoHands = false;
RegisterNetSyncVariableBool("m_IsSoundSynchRemote");
RegisterNetSyncVariableBool("m_IsPlaceSound");
}
override bool IsElectricAppliance()
{
return true;
}
void ForceIntoHandsNow( PlayerBase player )
{
m_ForceIntoHands = true;
player.LocalTakeEntityToHands(this); // Local, because ForceIntoHandsNow is executed on both, Client and Server
m_ForceIntoHands = false;
}
override bool CanPutInCargo( EntityAI parent )
{
if ( !super.CanPutInCargo(parent) ) {return false;}
EntityAI owner_EAI = GetHierarchyParent();
if ( owner_EAI && owner_EAI.IsKindOf("Fence"))
{
return true;
}
bool allow_into_inv = !GetCompEM().IsPlugged();
return allow_into_inv;
}
override bool CanPutIntoHands ( EntityAI player )
{
if ( !super.CanPutIntoHands( parent ) )
{
return false;
}
if ( m_ForceIntoHands )
{
return true;
}
else
{
EntityAI owner_EAI = GetHierarchyParent();
if ( owner_EAI && owner_EAI.IsKindOf("Fence"))
{
return true;
}
}
return true;
}
// Event called on item when it is placed in the player(Man) inventory, passes the owner as a parameter
override void OnInventoryEnter(Man player)
{
super.OnInventoryEnter(player);
PlayerBase player_PB;
Class.CastTo(player_PB, player);
if (player_PB.GetItemInHands() == this && GetCompEM().IsPlugged())
{
//player_PB.TogglePlacingLocal();
return;
}
GetCompEM().UnplugAllDevices();
if (!player_PB.IsPlacingLocal())
GetCompEM().UnplugThis();
}
override bool CanRemoveFromHands( EntityAI player )
{
return true;
}
override void OnVariablesSynchronized()
{
super.OnVariablesSynchronized();
if ( IsPlaceSound() )
{
PlayPlaceSound();
}
}
//================================================================
// ADVANCED PLACEMENT
//================================================================
override void OnPlacementStarted(Man player)
{
super.OnPlacementStarted(player);
array<string> selections = {
SEL_CORD_PLUGGED,
SEL_CORD_FOLDED
};
PlayerBase playerPB = PlayerBase.Cast(player);
if (GetGame().IsMultiplayer() && GetGame().IsServer())
playerPB.GetHologramServer().SetSelectionToRefresh(selections);
else
if (playerPB.GetHologramLocal())
playerPB.GetHologramLocal().SetSelectionToRefresh(selections);
}
override void OnPlacementComplete( Man player, vector position = "0 0 0", vector orientation = "0 0 0" )
{
super.OnPlacementComplete( player, position, orientation );
SetIsPlaceSound( true );
}
override string GetPlaceSoundset()
{
return "placeCableReel_SoundSet";
}
override void SetActions()
{
super.SetActions();
RemoveAction(ActionTakeItemToHands);
AddAction(ActionPlugIn);
AddAction(ActionPlugTargetIntoThis);
AddAction(ActionTogglePlaceObject);
AddAction(ActionPullOutPlug);
AddAction(ActionUnplugThisByCord);
AddAction(ActionRepositionPluggedItem);
AddAction(ActionPlaceObject);
AddAction(ActionTakeItemToHands);
}
} |