Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 11171 was 11171, checked in by tgidron, 9 years ago

Pickups work; Lives Counter and Total Flag Counter

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