Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FlappyOrx_HS17/src/modules/flappyorx/FlappyOrx.cc @ 11514

Last change on this file since 11514 was 11514, checked in by merholzl, 7 years ago

final XMLPort things. Changes in spaceshipFlappyOrx

File size: 4.7 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 *      Florian Zinggeler
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30    @file FlappyOrx.cc
31    @brief Implementation of the FlappyOrx class.
32*/
33
34#include "FlappyOrx.h"
35#include "Highscore.h"
36#include "core/CoreIncludes.h"
37#include "core/EventIncludes.h"
38#include "core/command/Executor.h"
39#include "core/config/ConfigValueIncludes.h"
40
41#include "gamestates/GSLevel.h"
42#include "chat/ChatManager.h"
43
44// ! HACK
45#include "infos/PlayerInfo.h"
46
47#include "FlappyOrxCenterPoint.h"
48#include "FlappyOrxShip.h"
49
50#include "core/command/ConsoleCommand.h"
51#include "worldentities/ExplosionPart.h"
52
53namespace orxonox
54{
55    RegisterUnloadableClass(FlappyOrx);
56
57    FlappyOrx::FlappyOrx(Context* context) : Deathmatch(context)
58    {
59        RegisterObject(FlappyOrx);
60        this->numberOfBots_ = 0; //sets number of default bots temporarly to 0
61        this->center_ = nullptr;
62        bEndGame = false;
63        lives = 3;
64        level = 1;
65        point = 0;
66        bShowLevel = false;
67        multiplier = 1;
68        b_combo = false;
69       
70        this->setHUDTemplate("FlappyOrxHUD");
71    }
72
73    void FlappyOrx::levelUp()
74    {
75        level++;
76        if (getPlayer() != nullptr)
77        {
78            for (int i = 0; i < 7; i++)
79            {
80
81                WeakPtr<ExplosionPart> chunk5 = new ExplosionPart(this->center_->getContext());
82                chunk5->setPosition(this->center_->getPosition());
83                chunk5->setVelocity(Vector3(1000, 0, 0));  //player->getVelocity()
84                chunk5->setScale(10);
85                chunk5->setEffect1("Orxonox/explosion2b");
86                chunk5->setEffect2("Orxonox/smoke6");
87                chunk5->setMinSpeed(0);
88                chunk5->setMaxSpeed(0);
89                chunk5->Explode();
90
91            }
92        }
93        addPoints(multiplier * 42);
94        multiplier *= 2;
95        toggleShowLevel();
96        showLevelTimer.setTimer(1.0f, false, createExecutor(createFunctor(&FlappyOrx::toggleShowLevel, this)));
97    }
98
99    FlappyOrxShip* FlappyOrx::getPlayer()
100    {
101        if (player == nullptr)
102        {
103            for (FlappyOrxShip* ship : ObjectList<FlappyOrxShip>()) {
104                player = ship;
105            }
106        }
107        return player;
108    }
109
110
111
112    void FlappyOrx::setCenterpoint(FlappyOrxCenterPoint* center)
113    {
114        this->center_ = center;
115    }
116
117    void FlappyOrx::costLife()
118    {
119        lives--;
120        multiplier = 1;
121        // end the game in 30 seconds.
122        if (lives <= 0)
123            enemySpawnTimer.setTimer(30.0f, false, createExecutor(createFunctor(&FlappyOrx::end, this)));
124    };
125
126    void FlappyOrx::comboControll()
127    {
128        if (b_combo)
129            multiplier++;
130        // if no combo was performed before, reset multiplier
131        else
132            multiplier = 1;
133        b_combo = false;
134    }
135
136    void FlappyOrx::start()
137    {
138        // Set variable to temporarily force the player to spawn.
139        this->bForceSpawn_ = true;
140
141        if (this->center_ == nullptr)  // abandon mission!
142        {
143            orxout(internal_error) << "FlappyOrx: No Centerpoint specified." << endl;
144            GSLevel::startMainMenu();
145            return;
146        }
147        // Call start for the parent class.
148        Deathmatch::start();
149    }
150    void FlappyOrx::addPoints(int numPoints)
151    {
152        if (!bEndGame)
153        {
154            point += numPoints * multiplier;
155            b_combo = true;
156        }
157    }
158
159    void FlappyOrx::end()
160    {
161        // DON'T CALL THIS!
162        //      Deathmatch::end();
163        // It will misteriously crash the game!
164        // Instead startMainMenu, this won't crash.
165        if (Highscore::exists()){
166                    int score = this->getPoints();
167                    if(score > Highscore::getInstance().getHighestScoreOfGame("Orxonox Arcade")) 
168                        Highscore::getInstance().storeHighscore("Orxonox Arcade",score);
169
170          }
171        GSLevel::startMainMenu();
172    }
173}
Note: See TracBrowser for help on using the repository browser.