| [670] | 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 |  | 
|---|
| [197] | 28 | #include "test1.h" | 
|---|
 | 29 | #include "test2.h" | 
|---|
 | 30 | #include "test3.h" | 
|---|
 | 31 |  | 
|---|
 | 32 | namespace orxonox | 
|---|
 | 33 | { | 
|---|
| [218] | 34 |     CreateFactory(Test3); | 
|---|
 | 35 |  | 
|---|
| [197] | 36 |     Test3::Test3() | 
|---|
 | 37 |     { | 
|---|
| [244] | 38 |         RegisterObject(Test3); | 
|---|
| [496] | 39 |  | 
|---|
 | 40 |         this->setConfigValues(); | 
|---|
| [197] | 41 |     } | 
|---|
 | 42 |  | 
|---|
| [496] | 43 |     void Test3::setConfigValues() | 
|---|
 | 44 |     { | 
|---|
| [667] | 45 |         SetConfigValue(value_int_, 1); | 
|---|
 | 46 |         SetConfigValue(value_uint_, 1); | 
|---|
 | 47 |         SetConfigValue(value_char_, 1); | 
|---|
 | 48 |         SetConfigValue(value_uchar_, 1); | 
|---|
 | 49 |         SetConfigValue(value_float_, 1); | 
|---|
 | 50 |         SetConfigValue(value_double_, 1); | 
|---|
 | 51 |         SetConfigValue(value_bool_, 1); | 
|---|
 | 52 |         SetConfigValue(value_string_, "This is a test"); | 
|---|
 | 53 |         SetConfigValue(value_constchar_, "This is another test"); | 
|---|
| [496] | 54 |         SetConfigValue(value_vector2_, Vector2(101, 202)); | 
|---|
 | 55 |         SetConfigValue(value_vector3_, Vector3(13, 26, 39)); | 
|---|
 | 56 |         SetConfigValue(value_colourvalue_, ColourValue(1.0, 0.5, 0.25, 0.887)); | 
|---|
 | 57 |     } | 
|---|
 | 58 |  | 
|---|
| [197] | 59 |     Test3::~Test3() | 
|---|
 | 60 |     { | 
|---|
 | 61 |     } | 
|---|
| [496] | 62 |  | 
|---|
 | 63 |     void Test3::configOutput() | 
|---|
 | 64 |     { | 
|---|
 | 65 |         std::cout << this->value_int_ << std::endl; | 
|---|
| [667] | 66 |         std::cout << this->value_uint_ << std::endl; | 
|---|
 | 67 |         std::cout << (int)this->value_char_ << std::endl; | 
|---|
 | 68 |         std::cout << (int)this->value_uchar_ << std::endl; | 
|---|
 | 69 |         std::cout << this->value_float_ << std::endl; | 
|---|
| [496] | 70 |         std::cout << this->value_double_ << std::endl; | 
|---|
 | 71 |         std::cout << this->value_bool_ << std::endl; | 
|---|
 | 72 |         std::cout << this->value_string_ << std::endl; | 
|---|
| [667] | 73 |         std::cout << this->value_constchar_ << std::endl; | 
|---|
| [496] | 74 |         std::cout << this->value_vector2_ << std::endl; | 
|---|
 | 75 |         std::cout << this->value_vector3_ << std::endl; | 
|---|
 | 76 |         std::cout << this->value_colourvalue_ << std::endl; | 
|---|
 | 77 |     } | 
|---|
 | 78 |  | 
|---|
| [667] | 79 |     #define testandcout(code) \ | 
|---|
| [677] | 80 |       std::cout << #code << " " << code << std::endl | 
|---|
| [197] | 81 |  | 
|---|
| [356] | 82 |     void Test3::usefullClassesIsATest(Test1* test1) | 
|---|
| [197] | 83 |     { | 
|---|
| [677] | 84 |         std::cout << std::endl; | 
|---|
 | 85 |         std::cout << "Test1:" << std::endl; | 
|---|
| [197] | 86 |         testandcout(test1->usefullClass1isA(Class(Test1))); | 
|---|
 | 87 |         testandcout(test1->usefullClass1isA(Class(Test2))); | 
|---|
 | 88 |         testandcout(test1->usefullClass1isA(Class(Test3))); | 
|---|
| [677] | 89 |         std::cout << std::endl; | 
|---|
| [197] | 90 |         testandcout(test1->usefullClass2isA(Class(Test1))); | 
|---|
 | 91 |         testandcout(test1->usefullClass2isA(Class(Test2))); | 
|---|
 | 92 |         testandcout(test1->usefullClass2isA(Class(Test3))); | 
|---|
| [677] | 93 |         std::cout << std::endl; | 
|---|
| [197] | 94 |         testandcout(test1->usefullClass3isA(Class(Test1))); | 
|---|
 | 95 |         testandcout(test1->usefullClass3isA(Class(Test2))); | 
|---|
 | 96 |         testandcout(test1->usefullClass3isA(Class(Test3))); | 
|---|
 | 97 |     } | 
|---|
 | 98 |  | 
|---|
| [356] | 99 |     void Test3::usefullClassesIsATest(Test2* test2) | 
|---|
| [197] | 100 |     { | 
|---|
| [677] | 101 |         std::cout << std::endl; | 
|---|
 | 102 |         std::cout << "Test2:" << std::endl; | 
|---|
| [197] | 103 |         testandcout(test2->usefullClass1isA(Class(Test1))); | 
|---|
 | 104 |         testandcout(test2->usefullClass1isA(Class(Test2))); | 
|---|
 | 105 |         testandcout(test2->usefullClass1isA(Class(Test3))); | 
|---|
| [677] | 106 |         std::cout << std::endl; | 
|---|
| [197] | 107 |         testandcout(test2->usefullClass2isA(Class(Test1))); | 
|---|
 | 108 |         testandcout(test2->usefullClass2isA(Class(Test2))); | 
|---|
 | 109 |         testandcout(test2->usefullClass2isA(Class(Test3))); | 
|---|
| [677] | 110 |         std::cout << std::endl; | 
|---|
| [197] | 111 |         testandcout(test2->usefullClass3isA(Class(Test1))); | 
|---|
 | 112 |         testandcout(test2->usefullClass3isA(Class(Test2))); | 
|---|
 | 113 |         testandcout(test2->usefullClass3isA(Class(Test3))); | 
|---|
 | 114 |     } | 
|---|
 | 115 | } | 
|---|