ScummVM API documentation
changeval.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 /*
23  * This code is based on the CRAB engine
24  *
25  * Copyright (c) Arvind Raja Yadav
26  *
27  * Licensed under MIT
28  *
29  */
30 
31 #ifndef CRAB_CHANGEVAL_H
32 #define CRAB_CHANGEVAL_H
33 
34 #include "common/str.h"
35 #include "crab/loaders.h"
36 #include "crab/people/opinion.h"
37 
38 namespace Crab {
39 
40 using namespace pyrodactyl::people;
41 
42 namespace pyrodactyl {
43 namespace event {
44 struct ChangeVal {
45  // The person whose opinion is changed
46  Common::String _id;
47 
48  // How much does opinion change?
49  int _val[pyrodactyl::people::OPI_TOTAL];
50 
51  ChangeVal() {
52  _val[OPI_LIKE] = 0;
53  _val[OPI_RESPECT] = 0;
54  _val[OPI_FEAR] = 0;
55  }
56 
57  ChangeVal(rapidxml::xml_node<char> *node) : ChangeVal() {
58  load(node);
59  }
60 
61  void load(rapidxml::xml_node<char> *node) {
62  loadStr(_id, "id", node);
63  loadNum(_val[OPI_LIKE], "like", node);
64  loadNum(_val[OPI_RESPECT], "respect", node);
65  loadNum(_val[OPI_FEAR], "fear", node);
66  }
67 };
68 } // End of namespace event
69 } // End of namespace pyrodactyl
70 
71 } // End of namespace Crab
72 
73 #endif // CRAB_CHANGEVAL_H
Definition: str.h:59
Definition: changeval.h:44
Definition: moveeffect.h:37