Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/netp2/src/orxonox/objects/Test.h @ 2944

Last change on this file since 2944 was 2944, checked in by scheusso, 15 years ago

this is another commit for testing purpose
still trying to get network function calls to work (first success)

  • Property svn:eol-style set to native
File size: 2.4 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Oli Scheuss
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _Test_H__
30#define _Test_H__
31
32#include "OrxonoxPrereqs.h"
33#include "core/BaseObject.h"
34#include "network/synchronisable/Synchronisable.h"
35
36
37typedef int TYPE;
38typedef unsigned int UTYPE;
39
40
41namespace orxonox
42{
43  class _OrxonoxExport Test: public BaseObject, public Synchronisable
44  {
45    public:
46      Test(BaseObject* creator);
47      virtual ~Test();
48
49      void setConfigValues();
50      void registerVariables();
51     
52      static void call(unsigned int clientID);
53
54
55      //unsigned functions
56      void setU1(UTYPE value){ u1 = value; }
57      void setU2(UTYPE value){ u2 = value; }
58      void setU3(UTYPE value){ u3 = value; }
59      void setU4(UTYPE value){ u4 = value; }
60      void checkU1();
61      void checkU2();
62      void checkU3();
63      void checkU4();
64     
65      //signed functions
66      void setS1(TYPE value){ s1 = value; }
67      void setS2(TYPE value){ s2 = value; }
68      void setS3(TYPE value){ s3 = value; }
69      void setS4(TYPE value){ s4 = value; }
70      void checkS1();
71      void checkS2();
72      void checkS3();
73      void checkS4();
74     
75      static void printV1(){ instance_->checkU1(); }
76      static void printV2(){ instance_->checkU2(); }
77      static void printV3(){ instance_->checkU3(); }
78      static void printV4(){ instance_->checkU4(); }
79
80    private:
81      UTYPE u1;
82      UTYPE u2;
83      UTYPE u3;
84      UTYPE u4;
85     
86      TYPE s1;
87      TYPE s2;
88      TYPE s3;
89      TYPE s4;
90     
91      static Test* instance_;
92  };
93}
94
95#endif /* _Test_H__ */
Note: See TracBrowser for help on using the repository browser.