Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/tgidronFS16/src/modules/hover/Hover.cc @ 11169

Last change on this file since 11169 was 11169, checked in by fvultier, 8 years ago

Fixed errors with pickups.

  • Property svn:eol-style set to native
File size: 6.3 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 Hover.cc
31    @brief Implementation of the Hover class. Sets up the whole Minigame
32*/
33
34#include "Hover.h"
35#include "chat/ChatManager.h"
36#include "HoverOrigin.h"
37#include "HoverWall.h"
38#include "HoverFlag.h"
39#include "MazeGenerator.h"
40#include "core/CoreIncludes.h"
41#include "gamestates/GSLevel.h"
42
43#include "pickup/PickupSpawner.h"
44#include "pickup/Pickup.h"
45
46namespace orxonox
47{
48    RegisterUnloadableClass(Hover);
49
50    Hover::Hover(Context* context) : Gametype(context)
51    {
52        RegisterObject(Hover);
53
54        this->origin_ = nullptr;
55        this->numberOfFlags_ = 1;
56        this->firstTick_ = true;
57        level = 1; //start at level 1
58        flagsTaken = 0;// took 0 flags in the beginning
59
60        numCells = 0;
61        cellSize = 0;
62        cellHeight = 0;
63
64        totFlags = 0;
65
66        this->setHUDTemplate("HoverHUD");
67
68    }
69
70    void Hover::start()
71    {
72        Gametype::start();
73        if(this->firstTick_ && this->origin_)
74        {
75            this->firstTick_ = false;
76
77            numCells = this->origin_->getNumCells();
78            cellSize = this->origin_->getCellSize();
79            cellHeight = this->origin_->getCellHeight();
80
81            MazeGenerator generator(numCells);
82            generator.generateMaze();
83            generator.renderMaze();
84
85            int* levelcode = generator.getLevelcode();
86
87            //Outer Walls
88            for(int i = 0; i<numCells; i++){
89                (new HoverWall(origin_->getContext()))->init(0,        i+1,      cellSize, cellHeight, 1);
90                (new HoverWall(origin_->getContext()))->init(numCells, i+1,      cellSize, cellHeight, 1);
91                (new HoverWall(origin_->getContext()))->init(i+1,      0,        cellSize, cellHeight, 2);
92                (new HoverWall(origin_->getContext()))->init(i+1,      numCells, cellSize, cellHeight, 2);
93            }
94
95
96
97            //Generate inner Walls according to levelcode
98            for(int y=0; y<numCells; y++){
99                for(int x=0; x<numCells; x++){
100                    switch(levelcode[ y * numCells + x ])
101                    {
102                        case 1: (new HoverWall(origin_->getContext()))->init(x+1, numCells-y, cellSize, cellHeight, 1);
103                            break;
104                        case 3: (new HoverWall(origin_->getContext()))->init(x+1, numCells-y, cellSize, cellHeight, 1);
105                        case 2: (new HoverWall(origin_->getContext()))->init(x+1, numCells-y, cellSize, cellHeight, 0);
106                        default:
107                            break;
108                    }
109                }
110            }
111
112            //Generate 5 flags randomly (test only 1 flag)
113            for ( int i = 0; i < 5; i++ )
114            {
115                HoverFlag* flag = new HoverFlag(origin_->getContext());
116                flag->init(rand()%numCells, rand()%numCells, cellSize);
117                flags_.push_back(flag);
118            }
119           
120
121            //Generate 5 PickupSpawners randomly
122            for (int i = 0; i<5; i++)
123            {
124                PickupSpawner* pickupSpawner = new PickupSpawner(origin_->getContext());
125
126                pickupSpawner->setPosition(get3dCoordinates(rand()%numCells, rand()%numCells, 10.0f));
127                pickupSpawner->setPickupTemplateName(origin_->getPickupTemplate());
128                pickupSpawner->setMaxSpawnedItems(5);
129                pickupSpawner->setRespawnTime(30);
130                pickupSpawner->setTriggerDistance(5);
131                // Add pickup spawner to the pickup spawner list
132                pickupSpawners_.push_back(pickupSpawner);
133            }
134
135            orxout() << this->origin_->getPickupTemplate() << endl;
136            orxout() << this->origin_->getPickupRepresentationTemplate() << endl;
137        } 
138    }
139
140
141    // Rename/delete this function.
142    void Hover::startLevel()
143    {
144        //Generate 5 flags randomly (test only 1 flag)
145            for ( int i = 0; i < 5; i++ )
146            {
147                HoverFlag* flag = new HoverFlag(origin_->getContext());
148                flag->init(rand()%numCells, rand()%numCells, cellSize);
149                flags_.push_back(flag);
150            }
151
152        //Generate 5 PickupSpawners randomly
153            for (int i = 0; i<5; i++)
154            {
155                PickupSpawner* pickup = new PickupSpawner(origin_->getContext());
156                //PickupSpawner->setPosition(rand()%numCells, rand()%numCells, cellSize);
157                //pickup->createDroppedPickup(this->getContext(), pickup , this, 5);
158                pickupSpawners_.push_back(pickup);
159            }
160
161           
162    }
163
164    void Hover::tick(float dt)
165    {
166        SUPER(Hover, tick, dt);
167
168
169        // Check if ship collided with one of the flags
170        for ( unsigned int i = 0; i < flags_.size(); i++ )
171        {
172            if(flags_[i]->getCollided())
173            {
174                flags_[i]->destroyLater();
175                flags_.erase (flags_.begin()+i);
176                totFlags++;
177                if(flags_.size()<=0){
178                    ChatManager::message("Level Up!");
179                   
180                    levelUp();
181                    //GSLevel::startMainMenu();
182                }
183            }
184
185        }
186        numberOfFlags_ = flags_.size();
187    }
188
189    void Hover::levelUp()
190    {
191        level++;
192        startLevel();
193
194    }
195
196    Vector3 Hover::get3dCoordinates(int x, int y, float heightOffset)
197    {
198        return Vector3(x*cellSize*1.0f + cellSize/2, heightOffset, y*cellSize*1.0f + cellSize/2);
199    }
200}
Note: See TracBrowser for help on using the repository browser.