Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/OrxoKart_HS18/src/modules/orxokart/OrxoKart.cc @ 12168

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

still on controlls

File size: 7.5 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 *      Manuel Meier
24 *   Co-authors:
25 *      Cyrill Burgener
26 *
27 */
28
29/**
30    @file OrxoKart.cc
31    @brief Implementation of the OrxoKart class. Sets up the whole Minigame
32*/
33
34#include "OrxoKart.h"
35#include "OrxoKartFlag.h"
36#include "OrxoKartKart.h"
37#include "OrxoKartOrigin.h"
38#include "OrxoKartTile.h"
39#include "core/CoreIncludes.h"
40
41namespace orxonox
42{
43    RegisterUnloadableClass(OrxoKart);
44
45    OrxoKart::OrxoKart(Context* context) : Gametype(context)
46    {
47        RegisterObject(OrxoKart);
48
49        this->origin_ = nullptr;
50        this->raceFinished = false;
51        this->firstTick_ = true;
52        this->numberOfShrooms = 3;
53        this->player = nullptr;
54
55        this->setHUDTemplate("OrxoKartHUD");
56    }
57
58    void OrxoKart::tick(float dt)
59    { 
60        SUPER(OrxoKart, tick, dt);
61
62        if(this->firstTick_ && this->origin_)
63        {
64            this->firstTick_ = false;
65            this->wayPoints = std::vector<OrxoKartTile*>(3, nullptr);
66
67            this->n = this->origin_->getNumCells();
68            this->s = this->origin_->getCellSize();
69            this->level = this->origin_->getLevel();
70            int map_1[] =   {1,1,1,1,1,1,1,1,0,0,0
71                            ,1,0,0,0,0,0,0,1,1,1,0
72                            ,1,0,1,1,1,1,0,0,0,1,1
73                            ,1,1,1,0,0,1,1,0,0,0,1
74                            ,0,0,0,0,0,0,1,0,1,1,1
75                            ,1,1,1,1,1,1,1,0,1,0,0
76                            ,1,0,0,0,0,0,0,0,1,0,0
77                            ,1,0,0,0,0,0,0,0,1,0,0
78                            ,1,1,1,1,1,0,0,0,1,1,1
79                            ,0,0,0,0,1,0,0,0,0,0,1
80                            ,0,0,0,0,1,1,1,2,1,1,1};
81
82            int map_2[] =  {1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,
83                            1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,
84                            1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,
85                            1,0,1,0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,0,
86                            1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,
87                            1,0,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,1,1,1,0,1,0,0,
88                            1,0,1,0,1,1,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,1,0,0,
89                            1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,0,1,0,0,
90                            1,0,1,1,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,
91                            1,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,0,0,
92                            1,1,1,1,1,1,1,1,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,
93                            0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,
94                            0,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,
95                            0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,
96                            0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,1,
97                            0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,1,
98                            0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,
99                            0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,
100                            0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,
101                            0,1,0,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,
102                            0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
103                            0,1,0,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,
104                            0,1,1,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,
105                            0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,1,
106                            0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1};
107
108            int *levelcodeArray =  level==1 ? map_1 : map_2;
109            // int z = 0;
110            //Generate floor according to levelcode
111            for(int i=0; i<n; i++){
112                for(int j=0; j<n; j++){
113                    if (int type = levelcodeArray[i*n + j]) {
114                        OrxoKartTile* tile = new OrxoKartTile(origin_->getContext());
115                        tile->init((n-1-i)*s, j*s, s, 0, type);
116                        // tiles.push_back(tile);
117                        //++z;
118                        if (level == 1) {
119                            //map 1
120                            if ( i == 9 && j == 4 )
121                                wayPoints.at(0) = tile;
122
123                            if ( i == 0 && j == 1) 
124                                wayPoints.at(1) = tile;
125                            if ( i == 10 && j == 7)
126                                wayPoints.at(2) = tile;
127                        }
128                        else if (level == 2) {
129                            //map 2
130                            if ( i == 23 && j == 11 )
131                                wayPoints.at(0) = tile;
132
133                            if ( i == 0 && j == 1) 
134                                wayPoints.at(1) = tile;
135                            if ( i == 24 && j == 17)
136                                wayPoints.at(2) = tile;
137                        }   
138                    }
139                }   
140            }
141            //bottom flag
142           
143            OrxoKartFlag* flag = new OrxoKartFlag(origin_->getContext());
144            flag->init(n, s);
145            flag_ = flag;
146           
147
148
149           
150
151        } //firsttick end
152       
153        if (wayPointCounter >= 3)
154            raceFinished = true;
155
156        else if (wayPointCounter < 3 && wayPointCounter >= 0 && wayPoints.at(wayPointCounter) != nullptr) {
157            if (wayPoints.at(wayPointCounter)->getCollided()) {
158                for (int i = 0; i < 3; ++i) {
159                    wayPoints.at(i)->setCollided(false);
160                }
161                ++wayPointCounter;
162            }
163        }
164        else {
165            //orxout() << " Should not happen, look in OrxoKart.cc";
166        }
167
168
169
170                //orxout() << numberOfShrooms << endl;
171
172
173        // Check if ship collided with the flag, flag is the bottom that is responsible for the game to detect the spaceship falling.
174        if(flag_->getCollided()){
175                //orxout() << numberOfShrooms << endl;
176            player = flag_->getObjectofCollision();
177            if (level == 1)
178                player->setPosition(Vector3(s*0, 20, s*8.5));
179            if (level == 2)
180                player->setPosition(Vector3(s*0, 20, s*18.5));
181            player->setOrientation(Quaternion(1, 0, 0, 0));   // 0, 0, 0
182            player->setVelocity(Vector3(0,0,0));
183            player->setAcceleration(Vector3(0,0,0));
184            flag_->setCollided(false); 
185            wayPointCounter = 0;
186        }
187
188        if (player && player->isBoosting()) {
189                //orxout() << "Boosting" << endl;
190                if(!numberOfShrooms) numberOfShrooms--;
191        }
192       
193    }
194}
Note: See TracBrowser for help on using the repository browser.