File size: 6,430 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 |
enum EAlarmClockState
{
UNSET,
SET,
RINGING,
//-----------
COUNT
}
class ClockBase : Inventory_Base
{
float m_AlarmTime01;
int m_State = EAlarmClockState.UNSET;
static const float UPDATE_TICK_RATE = 1; // Clock update tick frequency
ref Timer m_TimerUpdate;
float m_RingingDuration;
int m_StatePrev = -1;
EffectSound m_RingingSoundLoop;
EffectSound m_TurnOnSound;
EffectSound m_DestoryedSound;
EffectSound m_HitSound;
EffectSound m_WorkingSound;
const float RINGING_DURATION_MAX = 60;//in secs, at or past this value, the clock stops ringing
void ClockBase()
{
Init();
}
void ~ClockBase()
{
SEffectManager.DestroyEffect(m_WorkingSound);
SEffectManager.DestroyEffect(m_HitSound);
SEffectManager.DestroyEffect(m_DestoryedSound);
SEffectManager.DestroyEffect(m_TurnOnSound);
SEffectManager.DestroyEffect(m_RingingSoundLoop);
}
void Init()
{
RegisterNetSyncVariableInt("m_State", 0, EAlarmClockState.COUNT - 1);
}
override void SetActions()
{
super.SetActions();
AddAction(ActionAttachExplosivesTrigger);
}
protected int GetAlarmInMin()
{
int alarm_hand_in_mins = ConvertAlarmHand01ToMins12h(m_AlarmTime01);
int pass, hour, minute;
GetGame().GetWorld().GetDate(pass, pass, pass, hour, minute);
int curr_time_in_minutes = ConvertTimeToMins12h(hour, minute);
int ring_in_mins = GetTimeDiffInMins12h(curr_time_in_minutes, alarm_hand_in_mins);
return ring_in_mins;
}
static int ConvertAlarmHand01ToMins12h(float time01)
{
return Math.Lerp(0,12*60,time01);
}
static int ConvertAlarmHand01ToMins(float time01, int mins_max/*what's the upper range in minutes we are trying to map the time01 to*/)
{
return Math.Lerp(0,mins_max,time01);
}
static float ConvertMins12hToAlarmHand01(int mins)
{
return Math.InverseLerp(0,12*60,mins);
}
static int ConvertTimeToMins12h(int hour, int minute)
{
if (hour >= 12)
hour -= 12;
return hour * 60 + minute;
}
static int GetTimeDiffInMins12h(int from_mins, int to_mins)
{
if (to_mins > from_mins)
{
return to_mins - from_mins;
}
else if (to_mins < from_mins)
{
return ((12 * 60) - from_mins) + to_mins;
}
else return 0;
}
string GetToggleSound()
{
return "";
}
string GetRingingSound()
{
return "";
}
string GetHitSound()
{
return "";
}
string GetDestroyedSound()
{
return "";
}
string GetWorkingSound()
{
return "";
}
override void EEKilled(Object killer)
{
super.EEKilled(killer);
TurnOff();
}
override void EEHitByRemote(int damageType, EntityAI source, int component, string dmgZone, string ammo, vector modelPos)
{
super.EEHitByRemote(damageType, source, component, dmgZone, ammo, modelPos);
PlaySoundSet( m_HitSound, GetHitSound(), 0, 0 );
}
override void OnDamageDestroyed(int oldLevel)
{
super.OnDamageDestroyed(oldLevel);
if (GetGame().IsClient())
{
OnRingingStopClient();
if (oldLevel != -1)
{
PlaySoundSet(m_DestoryedSound, GetDestroyedSound(), 0, 0);
}
}
}
protected void OnRingingStartServer()
{
ActivateParent();
}
protected void OnRingingStartClient()
{
PlaySoundSetLoop( m_RingingSoundLoop, GetRingingSound(), 0, 0 );
if (m_WorkingSound)
{
SEffectManager.DestroyEffect(m_WorkingSound);
}
}
protected void OnRingingStopServer();
protected void OnRingingStopClient()
{
SEffectManager.DestroyEffect(m_RingingSoundLoop);
}
void SetAlarmInXMins(int in_mins)
{
int pass, hour, minute;
GetGame().GetWorld().GetDate(pass, pass, pass, hour, minute);
int mins12h = ConvertTimeToMins12h(hour, minute) + in_mins;
float time01 = ConvertMins12hToAlarmHand01(mins12h);
SetAlarmTimeServer(time01);
Arm();
}
float GetRingingDurationMax()
{
return RINGING_DURATION_MAX;
}
protected void SetupTimerServer()
{
m_TimerUpdate = new Timer();
m_TimerUpdate.Run(UPDATE_TICK_RATE , this, "OnUpdate", null, true);
}
protected void SetState(EAlarmClockState state)
{
m_State = state;
SetSynchDirty();
}
protected void Disarm()
{
SetState(EAlarmClockState.UNSET);
}
protected void Arm()
{
SetupTimerServer();
SetState(EAlarmClockState.SET);
m_RingingDuration = 0;
}
protected void ActivateParent()
{
if (GetHierarchyParent())
{
ItemBase parent = ItemBase.Cast(GetHierarchyParent());
if (parent)
{
parent.OnActivatedByItem(this);
}
}
}
protected void MakeRingingStart()
{
if (!m_TimerUpdate)
SetupTimerServer();
SetState(EAlarmClockState.RINGING);
OnRingingStartServer();
}
protected void MakeRingingStop()
{
SetState(EAlarmClockState.UNSET);
OnRingingStopServer();
}
void TurnOnClient();
void TurnOffClient();
override void OnVariablesSynchronized()
{
super.OnVariablesSynchronized();
if (m_State != m_StatePrev)//state changed
{
if (m_StatePrev == EAlarmClockState.RINGING)
{
OnRingingStopClient();
}
else if (m_State == EAlarmClockState.RINGING)
{
OnRingingStartClient();
}
if (m_State == EAlarmClockState.SET)
{
if (m_StatePrev != -1 || IsInitialized())
{
PlaySoundSet( m_TurnOnSound, GetToggleSound(), 0, 0 );
}
if (GetWorkingSound())
{
PlaySoundSet( m_WorkingSound, GetWorkingSound(), 0, 0, true );
}
}
else if (m_State == EAlarmClockState.UNSET)
{
if (m_StatePrev == EAlarmClockState.SET)
{
if (m_WorkingSound)
{
SEffectManager.DestroyEffect(m_WorkingSound);
}
if (m_StatePrev != -1 || IsInitialized())
{
PlaySoundSet( m_TurnOnSound, GetToggleSound(), 0, 0 );
}
}
}
m_StatePrev = m_State;
}
}
//---------------------------------------------------------------------------------------------------------
//---------------------------------------------- Public methods -------------------------------------------
//---------------------------------------------------------------------------------------------------------
bool IsRinging()
{
return (m_State == EAlarmClockState.RINGING);
}
bool IsAlarmOn()
{
return (m_State == EAlarmClockState.SET);
}
void TurnOn()
{
Arm();
}
void TurnOff()
{
if ( IsRinging() )
{
MakeRingingStop();
}
else
{
Disarm();
}
m_TimerUpdate = null;
}
void SetAlarmTimeServer(float time01)
{
SetAnimationPhaseNow("ClockAlarm", time01);
m_AlarmTime01 = time01;
}
} |