forked from YutaTachibana0310/SankouGoudou2019Summer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeEditWindow.cpp
58 lines (47 loc) · 1.42 KB
/
ChangeEditWindow.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//=====================================
//
//Change型エディットウィンドウ処理[ChangeEditWIndow.cpp]
//Author:GP12B332 21 立花雄太
//
//=====================================
#include "ChangeEditWindow.h"
#include "debugWindow.h"
using namespace std;
/**************************************
マクロ定義
***************************************/
/**************************************
構造体定義
***************************************/
/**************************************
描画処理
***************************************/
bool ChangeEditWindow::Draw()
{
bool selected = false;
string startLabel = string("start");
selected |= DebugInputInt(startLabel.c_str(), &start);
string endLabel = string("end");
selected |= DebugInputInt(endLabel.c_str(), &end);
start = Clamp(0, 4, start);
end = Clamp(0, 4, end);
return selected;
}
/**************************************
シリアライズ処理
***************************************/
picojson::value ChangeEditWindow::Serialize()
{
picojson::object obj;
obj.emplace(make_pair("start", picojson::value((double)start)));
obj.emplace(make_pair("end", picojson::value((double)end)));
return picojson::value(obj);
}
/**************************************
デシリアライズ処理
***************************************/
void ChangeEditWindow::Deserialize(picojson::object data)
{
this->start = static_cast<int>(data["start"].get<double>());
this->end = static_cast<int>(data["end"].get<double>());
}