forked from jaredtao/DesignPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSafeFrame.cpp
39 lines (39 loc) · 987 Bytes
/
SafeFrame.cpp
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
#include "SafeFrame.h"
#include "DayState.h"
#include "NightState.h"
#include <iostream>
SafeFrame::SafeFrame() : m_state(&DayState::GetInstance()) {}
void SafeFrame::setClock(int hour)
{
std::cout << "now timw is " << hour << std::endl;
m_state->doColock(this, hour);
}
void SafeFrame::doAction(ActionType actionType)
{
switch (actionType)
{
case ActionType::Alarm:
m_state->doAlarm(this);
break;
case ActionType::Phone:
m_state->doPhone(this);
break;
case ActionType::Use:
default:
m_state->doUse(this);
break;
}
}
void SafeFrame::stateChange(IState *state)
{
std::cout << __FUNCTION__ << std::endl;
m_state = state;
}
void SafeFrame::callSecurityCenter(const std::string &msg)
{
std::cout << __FUNCTION__ << " " << msg << std::endl;
}
void SafeFrame::recoderLog(const std::string &msg)
{
std::cout << __FUNCTION__ << " " << msg << std::endl;
}