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(Test2); |
---|
36 | |
---|
37 | Test2::Test2() |
---|
38 | { |
---|
39 | RegisterObject(Test2); |
---|
40 | |
---|
41 | this->usefullClass1_ = Class(Test1); |
---|
42 | this->usefullClass2_ = Class(Test2); |
---|
43 | this->usefullClass3_ = Class(Test3); |
---|
44 | |
---|
45 | timer1.setTimer(1, true, this, &Test2::timerFunction1); |
---|
46 | timer2.setTimer(5, true, this, &Test2::timerFunction2); |
---|
47 | timer3.setTimer(10, false, this, &Test2::timerFunction3); |
---|
48 | } |
---|
49 | |
---|
50 | Test2::~Test2() |
---|
51 | { |
---|
52 | } |
---|
53 | |
---|
54 | void Test2::timerFunction1() |
---|
55 | { |
---|
56 | std::cout << "Test2: 1 Sekunde" << std::endl; |
---|
57 | } |
---|
58 | |
---|
59 | void Test2::timerFunction2() |
---|
60 | { |
---|
61 | std::cout << "Test2: 5 Sekunden" << std::endl; |
---|
62 | } |
---|
63 | |
---|
64 | void Test2::timerFunction3() |
---|
65 | { |
---|
66 | std::cout << "Test2: 10 Sekunden sind um!" << std::endl; |
---|
67 | } |
---|
68 | |
---|
69 | bool Test2::usefullClass1isA(Identifier* identifier) |
---|
70 | { |
---|
71 | return this->usefullClass1_->isA(identifier); |
---|
72 | } |
---|
73 | |
---|
74 | bool Test2::usefullClass2isA(Identifier* identifier) |
---|
75 | { |
---|
76 | return this->usefullClass2_->isA(identifier); |
---|
77 | } |
---|
78 | |
---|
79 | bool Test2::usefullClass3isA(Identifier* identifier) |
---|
80 | { |
---|
81 | return this->usefullClass3_.isA(identifier); |
---|
82 | } |
---|
83 | |
---|
84 | void Test2::setUsefullClass1(Identifier* identifier) |
---|
85 | { |
---|
86 | std::cout << std::endl; |
---|
87 | std::cout << "Test2: usefullClass1->isA(Class(Test1)): " << identifier->isA(Class(Test1)) << std::endl; |
---|
88 | std::cout << "Test2: usefullClass1->isA(Class(Test2)): " << identifier->isA(Class(Test2)) << std::endl; |
---|
89 | std::cout << "Test2: usefullClass1->isA(Class(Test3)): " << identifier->isA(Class(Test3)) << std::endl; |
---|
90 | this->usefullClass1_ = identifier; |
---|
91 | } |
---|
92 | |
---|
93 | void Test2::setUsefullClass2(Identifier* identifier) |
---|
94 | { |
---|
95 | std::cout << std::endl; |
---|
96 | std::cout << "Test2: usefullClass2->isA(Class(Test1)): " << identifier->isA(Class(Test1)) << std::endl; |
---|
97 | std::cout << "Test2: usefullClass2->isA(Class(Test2)): " << identifier->isA(Class(Test2)) << std::endl; |
---|
98 | std::cout << "Test2: usefullClass2->isA(Class(Test3)): " << identifier->isA(Class(Test3)) << std::endl; |
---|
99 | this->usefullClass2_ = identifier; |
---|
100 | } |
---|
101 | |
---|
102 | void Test2::setUsefullClassOfTypeTest3(Identifier* identifier) |
---|
103 | { |
---|
104 | std::cout << std::endl; |
---|
105 | std::cout << "Test2: usefullClass3->isA(Class(Test1)): " << identifier->isA(Class(Test1)) << std::endl; |
---|
106 | std::cout << "Test2: usefullClass3->isA(Class(Test2)): " << identifier->isA(Class(Test2)) << std::endl; |
---|
107 | std::cout << "Test2: usefullClass3->isA(Class(Test3)): " << identifier->isA(Class(Test3)) << std::endl; |
---|
108 | this->usefullClass3_ = identifier; |
---|
109 | } |
---|
110 | } |
---|