Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/OrxoKart_HS18/src/modules/orxokart/OrxoKartKart.cc @ 12147

Last change on this file since 12147 was 12147, checked in by emustafa, 5 years ago

controlls tweaks

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 *      Cyrill Burgener
24 *
25 */
26
27/**
28    @file OrxoKartKart.cc
29    @brief Implementation of the OrxoKartKart control
30*/
31
32#include "OrxoKartKart.h"
33#include "core/CoreIncludes.h"
34#include "core/XMLPort.h"
35#include <BulletCollision/NarrowPhaseCollision/btManifoldPoint.h>
36#include "controllers/HumanController.h"
37
38namespace orxonox
39{
40    RegisterClass(OrxoKartKart);
41
42    OrxoKartKart::OrxoKartKart(Context* context) : SpaceShip(context)
43    {
44
45        RegisterObject(OrxoKartKart);
46        enableCollisionCallback();
47    }
48
49    void OrxoKartKart::moveFrontBack(const Vector2& value)
50        { 
51            this->steering_.z -= value.x;
52           
53        }
54
55    void OrxoKartKart::moveRightLeft(const Vector2& value)
56        {   
57            this->rotateYaw(value);
58        }
59
60    void OrxoKartKart::moveUpDown(const Vector2& value)
61        { 
62            this->steering_.y += value.x; 
63           
64        }
65
66    void OrxoKartKart::rotateYaw(const Vector2& value)
67        {
68            this->localAngularAcceleration_.setY(this->localAngularAcceleration_.y() - value.x); 
69        }
70
71    void OrxoKartKart::XMLPort(Element& xmlelement, XMLPort::Mode mode)
72        {
73            SUPER(OrxoKartKart, XMLPort, xmlelement, mode);
74           
75        }
76
77
78    /**
79    @brief
80        Removed, does nothing.
81    @param value
82    */
83    void OrxoKartKart::rotatePitch(const Vector2& value) { }
84
85    /**
86    @brief
87        Removed, does nothing.
88    @param value
89    */
90    void OrxoKartKart::rotateRoll(const Vector2& value) { }
91
92
93}
Note: See TracBrowser for help on using the repository browser.