1 | /* |
---|
2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
3 | * |
---|
4 | * |
---|
5 | * License notice: |
---|
6 | * |
---|
7 | * This program is free software; you can redistribute it and/or |
---|
8 | * modify it under the terms of the GNU General Public License |
---|
9 | * as published by the Free Software Foundation; either version 2 |
---|
10 | * of the License, or (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, write to the Free Software |
---|
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
20 | * |
---|
21 | * Author: |
---|
22 | * Fabian 'x3n' Landau |
---|
23 | * Co-authors: |
---|
24 | * ... |
---|
25 | * |
---|
26 | */ |
---|
27 | |
---|
28 | #include "test1.h" |
---|
29 | #include "test2.h" |
---|
30 | #include "test3.h" |
---|
31 | #include "core/CoreIncludes.h" |
---|
32 | |
---|
33 | namespace orxonox |
---|
34 | { |
---|
35 | CreateFactory(Test1); |
---|
36 | |
---|
37 | Test1::Test1() |
---|
38 | { |
---|
39 | RegisterObject(Test1); |
---|
40 | |
---|
41 | this->usefullClass1_ = Class(Test1); |
---|
42 | this->usefullClass2_ = Class(Test2); |
---|
43 | this->usefullClass3_ = Class(Test3); |
---|
44 | } |
---|
45 | |
---|
46 | Test1::~Test1() |
---|
47 | { |
---|
48 | } |
---|
49 | |
---|
50 | void Test1::tick(float dt) |
---|
51 | { |
---|
52 | std::cout << "Test1: " << this << std::endl; |
---|
53 | } |
---|
54 | |
---|
55 | bool Test1::usefullClass1isA(Identifier* identifier) |
---|
56 | { |
---|
57 | return this->usefullClass1_->isA(identifier); |
---|
58 | } |
---|
59 | |
---|
60 | bool Test1::usefullClass2isA(Identifier* identifier) |
---|
61 | { |
---|
62 | return this->usefullClass2_->isA(identifier); |
---|
63 | } |
---|
64 | |
---|
65 | bool Test1::usefullClass3isA(Identifier* identifier) |
---|
66 | { |
---|
67 | return this->usefullClass3_.isA(identifier); |
---|
68 | } |
---|
69 | |
---|
70 | void Test1::setUsefullClass1(Identifier* identifier) |
---|
71 | { |
---|
72 | std::cout << std::endl; |
---|
73 | std::cout << "Test1: usefullClass1->isA(Class(Test1)): " << identifier->isA(Class(Test1)) << std::endl; |
---|
74 | std::cout << "Test1: usefullClass1->isA(Class(Test2)): " << identifier->isA(Class(Test2)) << std::endl; |
---|
75 | std::cout << "Test1: usefullClass1->isA(Class(Test3)): " << identifier->isA(Class(Test3)) << std::endl; |
---|
76 | this->usefullClass1_ = identifier; |
---|
77 | } |
---|
78 | |
---|
79 | void Test1::setUsefullClass2(Identifier* identifier) |
---|
80 | { |
---|
81 | std::cout << std::endl; |
---|
82 | std::cout << "Test1: usefullClass2->isA(Class(Test1)): " << identifier->isA(Class(Test1)) << std::endl; |
---|
83 | std::cout << "Test1: usefullClass2->isA(Class(Test2)): " << identifier->isA(Class(Test2)) << std::endl; |
---|
84 | std::cout << "Test1: usefullClass2->isA(Class(Test3)): " << identifier->isA(Class(Test3)) << std::endl; |
---|
85 | this->usefullClass2_ = identifier; |
---|
86 | } |
---|
87 | |
---|
88 | void Test1::setUsefullClassOfTypeTest3(Identifier* identifier) |
---|
89 | { |
---|
90 | std::cout << std::endl; |
---|
91 | std::cout << "Test1: usefullClass3->isA(Class(Test1)): " << identifier->isA(Class(Test1)) << std::endl; |
---|
92 | std::cout << "Test1: usefullClass3->isA(Class(Test2)): " << identifier->isA(Class(Test2)) << std::endl; |
---|
93 | std::cout << "Test1: usefullClass3->isA(Class(Test3)): " << identifier->isA(Class(Test3)) << std::endl; |
---|
94 | this->usefullClass3_ = identifier; |
---|
95 | } |
---|
96 | |
---|
97 | void Test1::loadParams(TiXmlElement* xmlElem) |
---|
98 | { |
---|
99 | |
---|
100 | |
---|
101 | |
---|
102 | } |
---|
103 | } |
---|