[Orxonox-commit 3561] r8247 - in code/branches/tetris/src/modules: . tetris
dafrick at orxonox.net
dafrick at orxonox.net
Mon Apr 18 12:39:06 CEST 2011
Author: dafrick
Date: 2011-04-18 12:39:06 +0200 (Mon, 18 Apr 2011)
New Revision: 8247
Added:
code/branches/tetris/src/modules/tetris/
Removed:
code/branches/tetris/src/modules/tetris/
code/branches/tetris/src/modules/tetris/Pong.cc
code/branches/tetris/src/modules/tetris/Pong.h
code/branches/tetris/src/modules/tetris/PongAI.h
code/branches/tetris/src/modules/tetris/PongBat.cc
code/branches/tetris/src/modules/tetris/PongBat.h
code/branches/tetris/src/modules/tetris/PongBot.cc
code/branches/tetris/src/modules/tetris/PongBot.h
code/branches/tetris/src/modules/tetris/PongCenterpoint.cc
code/branches/tetris/src/modules/tetris/PongCenterpoint.h
code/branches/tetris/src/modules/tetris/PongPrereqs.h
code/branches/tetris/src/modules/tetris/PongScore.cc
code/branches/tetris/src/modules/tetris/PongScore.h
Log:
Removing some all Pong files.
Deleted: code/branches/tetris/src/modules/tetris/Pong.cc
===================================================================
--- code/branches/tetris/src/modules/pong/Pong.cc 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/Pong.cc 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,323 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file Pong.cc
- @brief Implementation of the Pong class.
-*/
-
-#include "Pong.h"
-
-#include "core/CoreIncludes.h"
-#include "core/EventIncludes.h"
-#include "core/command/Executor.h"
-
-#include "gamestates/GSLevel.h"
-
-#include "PongCenterpoint.h"
-#include "PongBall.h"
-#include "PongBat.h"
-#include "PongBot.h"
-#include "PongAI.h"
-
-namespace orxonox
-{
- // Events to allow to react to scoring of a player, in the level-file.
- CreateEventName(PongCenterpoint, right);
- CreateEventName(PongCenterpoint, left);
-
- CreateUnloadableFactory(Pong);
-
- /**
- @brief
- Constructor. Registers and initializes the object.
- */
- Pong::Pong(BaseObject* creator) : Deathmatch(creator)
- {
- RegisterObject(Pong);
-
- this->center_ = 0;
- this->ball_ = 0;
- this->bat_[0] = 0;
- this->bat_[1] = 0;
-
- this->setHUDTemplate("PongHUD");
-
- // Pre-set the timer, but don't start it yet.
- this->starttimer_.setTimer(1.0, false, createExecutor(createFunctor(&Pong::startBall, this)));
- this->starttimer_.stopTimer();
-
- // Set the type of Bots for this particular Gametype.
- this->botclass_ = Class(PongBot);
- }
-
- /**
- @brief
- Destructor. Cleans up, if initialized.
- */
- Pong::~Pong()
- {
- if (this->isInitialized())
- this->cleanup();
- }
-
- /**
- @brief
- Cleans up the Gametype by destroying the ball and the bats.
- */
- void Pong::cleanup()
- {
- if (this->ball_ != NULL) // Destroy the ball, if present.
- {
- this->ball_->destroy();
- this->ball_ = 0;
- }
-
- // Destroy both bats, if present.
- for (size_t i = 0; i < 2; ++i)
- {
- if (this->bat_[0] != NULL)
- {
- this->bat_[0]->destroy();
- this->bat_[0] = 0;
- }
- }
- }
-
- /**
- @brief
- Starts the Pong minigame.
- */
- void Pong::start()
- {
- if (this->center_ != NULL) // There needs to be a PongCenterpoint, i.e. the area the game takes place.
- {
- if (this->ball_ == NULL) // If there is no ball, create a new ball.
- {
- this->ball_ = new PongBall(this->center_);
- // Apply the template for the ball specified by the centerpoint.
- this->ball_->addTemplate(this->center_->getBalltemplate());
- }
-
- // Attach the ball to the centerpoint and set the parameters as specified in the centerpoint, the ball is attached to.
- this->center_->attach(this->ball_);
- this->ball_->setPosition(0, 0, 0);
- this->ball_->setFieldDimension(this->center_->getFieldDimension());
- this->ball_->setSpeed(0);
- this->ball_->setAccelerationFactor(this->center_->getBallAccelerationFactor());
- this->ball_->setBatLength(this->center_->getBatLength());
-
- // If one of the bats is missing, create it. Apply the template for the bats as specified in the centerpoint.
- for (size_t i = 0; i < 2; ++i)
- {
- if (this->bat_[i] == NULL)
- {
- this->bat_[i] = new PongBat(this->center_);
- this->bat_[i]->addTemplate(this->center_->getBattemplate());
- }
- }
-
- // Attach the bats to the centerpoint and set the parameters as specified in the centerpoint, the bats are attached to.
- this->center_->attach(this->bat_[0]);
- this->center_->attach(this->bat_[1]);
- this->bat_[0]->setPosition(-this->center_->getFieldDimension().x / 2, 0, 0);
- this->bat_[1]->setPosition( this->center_->getFieldDimension().x / 2, 0, 0);
- this->bat_[0]->yaw(Degree(-90));
- this->bat_[1]->yaw(Degree(90));
- this->bat_[0]->setSpeed(this->center_->getBatSpeed());
- this->bat_[1]->setSpeed(this->center_->getBatSpeed());
- this->bat_[0]->setFieldHeight(this->center_->getFieldDimension().y);
- this->bat_[1]->setFieldHeight(this->center_->getFieldDimension().y);
- this->bat_[0]->setLength(this->center_->getBatLength());
- this->bat_[1]->setLength(this->center_->getBatLength());
-
- // Set the bats for the ball.
- this->ball_->setBats(this->bat_);
- }
- else // If no centerpoint was specified, an error is thrown and the level is exited.
- {
- COUT(1) << "Error: No Centerpoint specified." << std::endl;
- GSLevel::startMainMenu();
- return;
- }
-
- // Start the timer. After it has expired the ball is started.
- this->starttimer_.startTimer();
-
- // Set variable to temporarily force the player to spawn.
- bool temp = this->bForceSpawn_;
- this->bForceSpawn_ = true;
-
- // Call start for the parent class.
- Deathmatch::start();
-
- // Reset the variable.
- this->bForceSpawn_ = temp;
- }
-
- /**
- @brief
- Ends the Pong minigame.
- */
- void Pong::end()
- {
- this->cleanup();
-
- // Call end for the parent class.
- Deathmatch::end();
- }
-
- /**
- @brief
- Spawns players, and fills the rest up with bots.
- */
- void Pong::spawnPlayersIfRequested()
- {
- // first spawn human players to assign always the left bat to the player in singleplayer
- for (std::map<PlayerInfo*, Player>::iterator it = this->players_.begin(); it != this->players_.end(); ++it)
- if (it->first->isHumanPlayer() && (it->first->isReadyToSpawn() || this->bForceSpawn_))
- this->spawnPlayer(it->first);
- // now spawn bots
- for (std::map<PlayerInfo*, Player>::iterator it = this->players_.begin(); it != this->players_.end(); ++it)
- if (!it->first->isHumanPlayer() && (it->first->isReadyToSpawn() || this->bForceSpawn_))
- this->spawnPlayer(it->first);
- }
-
- /**
- @brief
- Spawns the input player.
- @param player
- The player to be spawned.
- */
- void Pong::spawnPlayer(PlayerInfo* player)
- {
- assert(player);
-
- // If the first (left) bat has no player.
- if (this->bat_[0]->getPlayer() == NULL)
- {
- player->startControl(this->bat_[0]);
- this->players_[player].state_ = PlayerState::Alive;
- }
- // If the second (right) bat has no player.
- else if (this->bat_[1]->getPlayer() == NULL)
- {
- player->startControl(this->bat_[1]);
- this->players_[player].state_ = PlayerState::Alive;
- }
- // If both bats are taken.
- else
- return;
-
- // If the player is an AI, it receives a pointer to the ball.
- if (player->getController() != NULL && player->getController()->isA(Class(PongAI)))
- {
- PongAI* ai = orxonox_cast<PongAI*>(player->getController());
- ai->setPongBall(this->ball_);
- }
- }
-
- /**
- @brief
- Is called when the player scored.
- */
- void Pong::playerScored(PlayerInfo* player)
- {
- Deathmatch::playerScored(player);
-
- if (this->center_ != NULL) // If there is a centerpoint.
- {
- // Fire an event for the player that has scored, to be able to react to it in the level, e.g. by displaying fireworks.
- if (player == this->getRightPlayer())
- this->center_->fireEvent(FireEventName(PongCenterpoint, right));
- else if (player == this->getLeftPlayer())
- this->center_->fireEvent(FireEventName(PongCenterpoint, left));
-
- // Also announce, that the player has scored.
- if (player != NULL)
- this->gtinfo_->sendAnnounceMessage(player->getName() + " scored");
- }
-
- // If there is a ball present, reset its position, velocity and acceleration.
- if (this->ball_ != NULL)
- {
- this->ball_->setPosition(Vector3::ZERO);
- this->ball_->setVelocity(Vector3::ZERO);
- this->ball_->setAcceleration(Vector3::ZERO);
- this->ball_->setSpeed(0);
- }
-
- // If there are bats reset them to the middle position.
- if (this->bat_[0] != NULL && this->bat_[1] != NULL)
- {
- this->bat_[0]->setPosition(-this->center_->getFieldDimension().x / 2, 0, 0);
- this->bat_[1]->setPosition( this->center_->getFieldDimension().x / 2, 0, 0);
- }
-
- // Restart the timer to start the ball.
- this->starttimer_.startTimer();
- }
-
- /**
- @brief
- Starts the ball with some default speed.
- */
- void Pong::startBall()
- {
- if (this->ball_ != NULL && this->center_ != NULL)
- this->ball_->setSpeed(this->center_->getBallSpeed());
- }
-
- /**
- @brief
- Get the left player.
- @return
- Returns a pointer to the player playing on the left. If there is no left player, NULL is returned.
- */
- PlayerInfo* Pong::getLeftPlayer() const
- {
- if (this->bat_ != NULL && this->bat_[0] != NULL)
- return this->bat_[0]->getPlayer();
- else
- return 0;
- }
-
- /**
- @brief
- Get the right player.
- @return
- Returns a pointer to the player playing on the right. If there is no right player, NULL is returned.
- */
- PlayerInfo* Pong::getRightPlayer() const
- {
- if (this->bat_ != NULL && this->bat_[1] != NULL)
- return this->bat_[1]->getPlayer();
- else
- return 0;
- }
-}
Deleted: code/branches/tetris/src/modules/tetris/Pong.h
===================================================================
--- code/branches/tetris/src/modules/pong/Pong.h 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/Pong.h 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,99 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file Pong.h
- @brief Declaration of the Pong class.
- @ingroup Pong
-*/
-
-#ifndef _Pong_H__
-#define _Pong_H__
-
-#include "pong/PongPrereqs.h"
-
-#include "tools/Timer.h"
-
-#include "gametypes/Deathmatch.h"
-
-namespace orxonox
-{
-
- /**
- @brief
- Implements a Pong minigame (<a href="http://en.wikipedia.org/wiki/Pong">Wikipedia::Pong</a>).
- It connects the different entities present in a game of Pong.
-
- - The @ref orxonox::PongCenterpoint "PongCenterpoint" is the playing field for the Pong minigame, it allows for configuration of the minigame, e.g. by setting the size of the playing field, or the length of the @ref orxonox::PongBat "PongBats". The playing field is always in the x,y-plane, the x-axis being the horizontal and the z-axis being the vertical axis.<br />
- The Pong class redistributes the important parameters defined in @ref orxonox::PongCenterpoint "PongCenterpoint" to the other entities, that need to know them, e.g. the @ref orxonox::PongBall "PongBall" and the @ref orxonox::PongBat "PongBats".<br />
- The @ref orxonox::PongCenterpoint "PongCenterpoint" needs to exist in a level with the @ref orxonox::Gametype "Gametype" <em>Pong</em>.
- - The @ref orxonox::PongBall "PongBall" is the ball both players play with. The @ref orxonox::PongBall "PongBall" both implements the movement of the ball, as well as the influence of the boundaries and consequently, also the bouncing (off the upper and lower delimiters, and as off the @ref orxonox::PongBat "PongBats") of the ball and the effects of the failure of a player to catch the ball (i.e. the scoring of the other player).
- - The two @ref orxonox::PongBat "PongBats" are the entities through which the players can actively participate in the game, by controlling them. The @ref orxonox::PongBat "PongBat" class manages the movement (and restrictions thereof) and the influence of the players on the bats.
-
- @author
- Fabian 'x3n' Landau
-
- @ingroup Pong
- */
- class _PongExport Pong : public Deathmatch
- {
- public:
- Pong(BaseObject* creator); //!< Constructor. Registers and initializes the object.
- virtual ~Pong(); //!< Destructor. Cleans up, if initialized.
-
- virtual void start(); //!< Starts the Pong minigame.
- virtual void end(); ///!< Ends the Pong minigame.
-
- virtual void spawnPlayer(PlayerInfo* player); //!< Spawns the input player.
-
- virtual void playerScored(PlayerInfo* player); //!< Is called when the player scored.
-
- /**
- @brief Set the PongCenterpoint (the playing field).
- @param center A pointer to the PongCenterpoint to be set.
- */
- void setCenterpoint(PongCenterpoint* center)
- { this->center_ = center; }
-
- PlayerInfo* getLeftPlayer() const; //!< Get the left player.
- PlayerInfo* getRightPlayer() const; //!< Get the right player.
-
- protected:
- virtual void spawnPlayersIfRequested(); //!< Spawns players, and fills the rest up with bots.
-
- void startBall(); //!< Starts the ball with some default speed.
- void cleanup(); //!< Cleans up the Gametype by destroying the ball and the bats.
-
- WeakPtr<PongCenterpoint> center_; //!< The playing field.
- WeakPtr<PongBall> ball_; //!< The Pong ball.
- WeakPtr<PongBat> bat_[2]; //!< The two bats.
- Timer starttimer_; //!< A timer to delay the start of the game.
- };
-}
-
-#endif /* _Pong_H__ */
Deleted: code/branches/tetris/src/modules/tetris/PongAI.h
===================================================================
--- code/branches/tetris/src/modules/pong/PongAI.h 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongAI.h 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,97 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongAI.h
- @brief Declaration of the PongAI class.
- @ingroup Pong
-*/
-
-#ifndef _PongAI_H__
-#define _PongAI_H__
-
-#include "pong/PongPrereqs.h"
-
-#include <list>
-
-#include "util/Math.h"
-#include "tools/interfaces/Tickable.h"
-
-#include "controllers/Controller.h"
-
-namespace orxonox
-{
-
- /**
- @brief
- The PongAI is an artificial intelligence for the @ref orxonox::Pong "Pong" gametype.
-
- @author
- Fabian 'x3n' Landau
-
- @ingroup Pong
- */
- class _PongExport PongAI : public Controller, public Tickable
- {
- public:
- PongAI(BaseObject* creator); //!< Constructor. Registers and initializes the object.
- virtual ~PongAI();
-
- void setConfigValues();
-
- virtual void tick(float dt); //!< Implements the behavior of the PongAI (i.e. its intelligence).
-
- /**
- @brief Set the ball for the AI.
- @param ball A pointer to the ball.
- */
- void setPongBall(PongBall* ball)
- { this->ball_ = ball; }
-
- protected:
- void calculateRandomOffset(); //!< Calculates the random offset, that accounts for random errors the AI makes in order to be beatable.
- void calculateBallEndPosition(); //!< Calculate the end position the ball will be in.
- void move(char direction, bool bUseDelay); //!< Determine the movement the AI will undertake.
- void delayedMove(); //!< Is called, when a delayed move takes effect.
-
- PongBall* ball_; //!< A pointer to the ball.
- Vector2 ballDirection_; //!< Vector to store the (x,z) direction in which the ball is flying.
- float ballEndPosition_; //!< The calculated end position of the ball.
- float randomOffset_; //!< A random offset to introduce random errors (weighted by the strength of the AI) into the AI's behavior.
- bool bChangedRandomOffset_; //!< Helper boolean, to change the random offset more often.
- float relHysteresisOffset_; //!< A hysteresis offset.
- float strength_; //!< The strength of the AI. Ranging from 0 to 1.
-
- std::list<std::pair<Timer*, char> > reactionTimers_; //!< A list of reaction timers and the directions that take effect when their timer expires.
- char movement_; //!< The planned movement.
- char oldMove_; //!< The previous movement.
- bool bOscillationAvoidanceActive_; //!< Boolean, to avoid oscillations.
- };
-}
-
-#endif /* _PongAI_H__ */
Deleted: code/branches/tetris/src/modules/tetris/PongBat.cc
===================================================================
--- code/branches/tetris/src/modules/pong/PongBat.cc 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongBat.cc 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,155 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongBat.cc
- @brief Implementation of the PongBat class.
-*/
-
-#include "PongBat.h"
-
-#include "core/CoreIncludes.h"
-#include "core/XMLPort.h"
-
-namespace orxonox
-{
- CreateFactory(PongBat);
-
- /**
- @brief
- Constructor. Registers and initializes the object.
- */
- PongBat::PongBat(BaseObject* creator) : ControllableEntity(creator)
- {
- RegisterObject(PongBat);
-
- this->movement_ = 0;
- this->bMoveLocal_ = false;
- this->speed_ = 60;
- this->length_ = 0.25;
- this->fieldHeight_ = 100;
- this->bSteadiedPosition_ = false;
-
- this->registerVariables();
- }
-
- /**
- @brief
- Registers variables to be synchronized over the network.
- */
- void PongBat::registerVariables()
- {
- registerVariable(this->speed_);
- registerVariable(this->fieldHeight_);
- registerVariable(this->length_);
- }
-
- /**
- @brief
- Is called each tick.
- Moves the bat.
- @param dt
- The time since last tick.
- */
- void PongBat::tick(float dt)
- {
- // If the bat is controlled (but not over the network).
- if (this->hasLocalController())
- {
- if (this->movement_ != 0)
- {
- // The absolute value of the movement is restricted to be lesser or equal than the speed of the bat.
- this->movement_ = clamp(this->movement_, -1.0f, 1.0f) * this->speed_;
-
- // If moveRightLeft() is used the movement is dependento on wehther it is the right or the left bat, so, it is i.e. dependent on the orientation of the bat.
- if (this->bMoveLocal_)
- this->setVelocity(this->getOrientation() * Vector3(this->movement_, 0, 0));
- else
- this->setVelocity(0, 0, this->movement_);
-
- this->movement_ = 0;
- this->bSteadiedPosition_ = false;
- }
- // If there is no movement but the position has not been steadied, the velocity is set to zero and the position is reaffirmed.
- else if (!this->bSteadiedPosition_)
- {
- // To ensure network synchronicity
- this->setVelocity(0, 0, 0);
- this->setPosition(this->getPosition());
- this->bSteadiedPosition_ = true;
- }
- }
-
- SUPER(PongBat, tick, dt);
-
- // Restrict the position of the bats, for them to always be between the upper and lower delimiters. i.e. the bats stall if they reach the upper or lower boundary.
- Vector3 position = this->getPosition();
- if (position.z > this->fieldHeight_ / 2 - this->fieldHeight_ * this->length_ / 2)
- position.z = this->fieldHeight_ / 2 - this->fieldHeight_ * this->length_ / 2;
- if (position.z < -this->fieldHeight_ / 2 + this->fieldHeight_ * this->length_ / 2)
- position.z = -this->fieldHeight_ / 2 + this->fieldHeight_ * this->length_ / 2;
- if (position != this->getPosition())
- {
- this->setPosition(position);
- this->setVelocity( Vector3::ZERO );
- }
- }
-
- /**
- @brief
- Overloaded the function to steer the bat up and down.
- @param value
- A vector whose first component is the inverse direction in which we want to steer the bat.
- */
- void PongBat::moveFrontBack(const Vector2& value)
- {
- this->bMoveLocal_ = false;
- this->movement_ = -value.x;
- }
-
- /**
- @brief
- Overloaded the function to steer the bat up and down.
- @param value
- A vector whose first component is the direction in which we wnat to steer the bat.
- */
- void PongBat::moveRightLeft(const Vector2& value)
- {
- this->bMoveLocal_ = true;
- this->movement_ = value.x;
- }
-
- /**
- @brief
- Is called when the player changed.
- */
- void PongBat::changedPlayer()
- {
- this->setVelocity(0, 0, 0);
- }
-}
Deleted: code/branches/tetris/src/modules/tetris/PongBat.h
===================================================================
--- code/branches/tetris/src/modules/pong/PongBat.h 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongBat.h 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,120 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongBat.h
- @brief Declaration of the PongBat class.
- @ingroup Pong
-*/
-
-#ifndef _PongBat_H__
-#define _PongBat_H__
-
-#include "pong/PongPrereqs.h"
-
-#include "worldentities/ControllableEntity.h"
-
-namespace orxonox
-{
-
- /**
- @brief
- The PongBat class manages the bats for @ref orxonox::Pong "Pong", which are the elements controlled by the players.
-
- It is responsible for the movement (controlled by the players) of the bat.
-
- @author
- Fabian 'x3n' Landau
-
- @ingroup Pong
- */
- class _PongExport PongBat : public ControllableEntity
- {
- public:
- PongBat(BaseObject* creator); //!< Constructor. Registers and initializes the object.
- virtual ~PongBat() {}
-
- virtual void tick(float dt);
-
- virtual void moveFrontBack(const Vector2& value); //!< Overloaded the function to steer the bat up and down.
- virtual void moveRightLeft(const Vector2& value); //!< Overloaded the function to steer the bat up and down.
-
- virtual void changedPlayer(); //!< Is called when the player changed.
-
- /**
- @brief Set the speed of the bat.
- @param speed The speed to be set.
- */
- void setSpeed(float speed)
- { this->speed_ = speed; }
- /**
- @brief Get the speed of the bat.
- @return Returns the speed of the bat.
- */
- float getSpeed() const
- { return this->speed_; }
-
- /**
- @brief Set the height of the playing field.
- @param height The height of the playing field.
- */
- void setFieldHeight(float height)
- { this->fieldHeight_ = height; }
- /**
- @brief Get the height of the playing field.
- @return Returns the height of the playing field.
- */
- float getFieldHeight() const
- { return this->fieldHeight_; }
-
- /**
- @brief Set the length of the bat.
- @param length The length of the bat (in z-direction) as percentage of the height of the playing field.
- */
- void setLength(float length)
- { this->length_ = length; }
- /**
- @brief get the length of the bat.
- @return Returns the length of the bat (in z-direction) as percentage of the height of the playing field.
- */
- float getLength() const
- { return this->length_; }
-
- private:
- void registerVariables(); //!< Registers variables to be synchronized over the network.
-
- float movement_; //!< The amount (and direction), in z-direction, of movement of the bat.
- bool bMoveLocal_; //!< Helper to know whether the movement is caused by moveFrontBack() or moveRightLeft().
- float speed_; //!< The movement speed of the bat.
- float length_; //!< The length of the bat (in z-direction) as percentage of the height of the playing field.
- float fieldHeight_; //!< The height of the playing field.
- bool bSteadiedPosition_; //!< Helper boolean, to keep track of when to steady the position, to ensure network synchronicity.
- };
-}
-
-#endif /* _PongBat_H__ */
Deleted: code/branches/tetris/src/modules/tetris/PongBot.cc
===================================================================
--- code/branches/tetris/src/modules/pong/PongBot.cc 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongBot.cc 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,54 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongBot.cc
- @brief Implementation of the PongBot class.
-*/
-
-#include "PongBot.h"
-
-#include "core/CoreIncludes.h"
-#include "PongAI.h"
-
-namespace orxonox
-{
- CreateFactory(PongBot);
-
- /**
- @brief
- Constructor. Registers the object and creates a PongAI controller.
- */
- PongBot::PongBot(BaseObject* creator) : Bot(creator)
- {
- RegisterObject(PongBot);
-
- this->defaultController_ = Class(PongAI);
- this->createController();
- }
-}
Deleted: code/branches/tetris/src/modules/tetris/PongBot.h
===================================================================
--- code/branches/tetris/src/modules/pong/PongBot.h 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongBot.h 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,63 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongBot.h
- @brief Declaration of the PongBot class.
- @ingroup Pong
-*/
-
-#ifndef _PongBot_H__
-#define _PongBot_H__
-
-#include "pong/PongPrereqs.h"
-#include "infos/Bot.h"
-
-namespace orxonox
-{
-
- /**
- @brief
- A bot especially for @ref orxonox::Pong "Pong".
-
- Uses the @ref orxonox::PongAI "PongAI".
-
- @author
- Fabian 'x3n' Landau
-
- @ingroup Pong
- */
- class _PongExport PongBot : public Bot
- {
- public:
- PongBot(BaseObject* creator);
- virtual ~PongBot() {}
- };
-}
-
-#endif /* _PongBot_H__ */
Deleted: code/branches/tetris/src/modules/tetris/PongCenterpoint.cc
===================================================================
--- code/branches/tetris/src/modules/pong/PongCenterpoint.cc 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongCenterpoint.cc 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,104 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongCenterpoint.cc
- @brief Implementation of the PongCenterpoint class.
-*/
-
-#include "PongCenterpoint.h"
-
-#include "core/CoreIncludes.h"
-#include "core/XMLPort.h"
-
-#include "Pong.h"
-
-namespace orxonox
-{
- CreateFactory(PongCenterpoint);
-
- /**
- @brief
- Constructor. Registers and initializes the object and checks whether the gametype is actually Pong.
- */
- PongCenterpoint::PongCenterpoint(BaseObject* creator) : StaticEntity(creator)
- {
- RegisterObject(PongCenterpoint);
-
- this->width_ = 200;
- this->height_ = 120;
- this->ballspeed_ = 100;
- this->ballaccfactor_ = 1.0;
- this->batspeed_ = 60;
- this->batlength_ = 0.25;
-
- this->checkGametype();
- }
-
- /**
- @brief
- Method to create a PongCenterpoint through XML.
- */
- void PongCenterpoint::XMLPort(Element& xmlelement, XMLPort::Mode mode)
- {
- SUPER(PongCenterpoint, XMLPort, xmlelement, mode);
-
- XMLPortParam(PongCenterpoint, "dimension", setFieldDimension, getFieldDimension, xmlelement, mode);
- XMLPortParam(PongCenterpoint, "balltemplate", setBalltemplate, getBalltemplate, xmlelement, mode);
- XMLPortParam(PongCenterpoint, "battemplate", setBattemplate, getBattemplate, xmlelement, mode);
- XMLPortParam(PongCenterpoint, "ballspeed", setBallSpeed, getBallSpeed, xmlelement, mode);
- XMLPortParam(PongCenterpoint, "ballaccfactor", setBallAccelerationFactor, getBallAccelerationFactor, xmlelement, mode);
- XMLPortParam(PongCenterpoint, "batspeed", setBatSpeed, getBatSpeed, xmlelement, mode);
- XMLPortParam(PongCenterpoint, "batlength", setBatLength, getBatLength, xmlelement, mode);
- }
-
- /**
- @brief
- Is called when the gametype has changed.
- */
- void PongCenterpoint::changedGametype()
- {
- SUPER(PongCenterpoint, changedGametype);
-
- // Check, whether it's still Pong.
- this->checkGametype();
- }
-
- /**
- @brief
- Checks whether the gametype is Pong and if it is, sets its centerpoint.
- */
- void PongCenterpoint::checkGametype()
- {
- if (this->getGametype() != NULL && this->getGametype()->isA(Class(Pong)))
- {
- Pong* pongGametype = orxonox_cast<Pong*>(this->getGametype().get());
- pongGametype->setCenterpoint(this);
- }
- }
-}
Deleted: code/branches/tetris/src/modules/tetris/PongCenterpoint.h
===================================================================
--- code/branches/tetris/src/modules/pong/PongCenterpoint.h 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongCenterpoint.h 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,237 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongCenterpoint.h
- @brief Declaration of the PongCenterpoint class.
- @ingroup Pong
-*/
-
-#ifndef _PongCenterpoint_H__
-#define _PongCenterpoint_H__
-
-#include "pong/PongPrereqs.h"
-
-#include <string>
-
-#include <util/Math.h>
-
-#include "worldentities/StaticEntity.h"
-
-namespace orxonox
-{
-
- /**
- @brief
- The PongCenterpoint implements the playing field @ref orxonox::Pong "Pong" takes place in and allows for many parameters of the minigame to be set.
- The playing field resides in the x,z-plane, with the x-axis being the horizontal axis and the z-axis being the vertical axis.
-
- Various parameters can be set:
- - The <b>dimension</b> is a vector, that defines the width and height of the playing field. The default is <em>(200, 120)</em>.
- - The <b>balltemplate</b> is a template that is applied to the @ref orxonox::PongBall "PongBall", it can be used to attach different things to it, e.g. its @ref orxonox::Model "Model". See below for a usage example.
- - The <b>battemplate</b> is a template that is applied to the @ref orxonox::PongBall "PongBat", it can be used to attach different things to it, e.g. its @ref orxonox::Model "Model". See below for a usage example.
- - The <b>ballspeed</b> is the speed with which the @ref orxonox::PongBall "PongBall" moves. The default is <em>100</em>.
- - The <b>ballaccfactor</b> is the acceleration factor for the @ref orxonox::PongBall "PongBall". The default is <em>1.0</em>.
- - The <b>batspeed</b> is the speed with which the @ref orxonox::PongBat "PongBats" move. The default is <em>60</em>.
- - The <b>batlength</b> is the length of the @ref orxonox::PongBat "PongBats" as the percentage of the height of the playing field. The default is <em>0.25</em>.
-
- An example in XML of the PongCenterpoint would be:
-
- First the needed templates:
- The template for the @ref orxonox::PongBall "PongBall".
- @code
- <Template name="pongball">
- <PongBall>
- <attached>
- <Model mesh="sphere.mesh" scale="2" />
- <ParticleSpawner name="hiteffect" position="0,0,0" source="Orxonox/sparks2" lifetime="0.01" autostart="0" mainstate="spawn" />
- </attached>
- <eventlisteners>
- <EventTarget target="hiteffect" />
- </eventlisteners>
- </PongBall>
- </Template>
- @endcode
- As can be seen, a sphere is attached as the @ref orxonox::Model "Model" for the @ref orxonox::PongBall "PongBall", and also an @ref orxonox::EventListener "EventListener" that triggers a @ref orxonox::ParticleSpawner "ParticleSpawner", whenever the ball hits the boundaries is attached.
-
- Additionally the template for the @ref orxonox::PongBat "PongBat".
- @code
- <Template name="pongbatcameras" defaults="0">
- <PongBat>
- <camerapositions>
- <CameraPosition position="0,200,0" pitch="-90" absolute="true" />
- </camerapositions>
- </PongBat>
- </Template>
-
- <Template name="pongbat">
- <PongBat camerapositiontemplate=pongbatcameras>
- <attached>
- <Model position="0,0,3" mesh="cube.mesh" scale3D="14,2,2" />
- </attached>
- </PongBat>
- </Template>
- @endcode
- As can be seen, there are actually two templates. The first template is needed to set the camera for the @ref orxonox::PongBat "PongBat". The second template ist the actual template for the @ref orxonox::PongBat "PongBat", the template for the camera position is added and a @ref orxonox::Model "Model" for the @ref orxonox::PongBat "PongBat" is attached.
-
- Finally the PongCenterpoint is created.
- @code
- <PongCenterpoint name="pongcenter" dimension="200,120" balltemplate="pongball" battemplate="pongbat" ballspeed="200" ballaccfactor="1.0" batspeed="130" batlength="0.25">
- <attached>
- <Model position="0,0,60" mesh="cube.mesh" scale3D="105,1,1" />
- <Model position="0,0,-60" mesh="cube.mesh" scale3D="105,1,1" />
- </attached>
- </PongCenterpoint>
- @endcode
- All parameters are specified. And also two @ref orxonox::Model "Models" (for the upper and lower boundary) are attached.
-
- For a more elaborate example, have a look at the <code>pong.oxw</code> level file.
-
- @author
- Fabian 'x3n' Landau
-
- @ingroup Pong
- */
- class _PongExport PongCenterpoint : public StaticEntity
- {
- public:
- PongCenterpoint(BaseObject* creator); //!< Constructor. Registers and initializes the object and checks whether the gametype is actually Pong.
- virtual ~PongCenterpoint() {}
-
- virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method to create a PongCenterpoint through XML.
-
- virtual void changedGametype(); //!< Is called when the gametype has changed.
-
- /**
- @brief Set the template for the ball. (e.g. to attach the model of the ball, but also to attach an EventListener to it to detect, when it hits the boundaries, and e.g. display some ParticleEffets, when it does.)
- @param balltemplate The name of the template to be set.
- */
- void setBalltemplate(const std::string& balltemplate)
- { this->balltemplate_ = balltemplate; }
- /**
- @brief Get the template of the ball.
- @return Returns the name of the template of the ball.
- */
- const std::string& getBalltemplate() const
- { return this->balltemplate_; }
-
- /**
- @brief Set the template for the bats. (e.g. to attach the model of the bat, but also to attach CameraPositions to it, to be able to view the game from the bats perspective)
- @param battemplate The name of the template to be set.
- */
- void setBattemplate(const std::string& battemplate)
- { this->battemplate_ = battemplate; }
- /**
- @brief Get the template of the bats.
- @return Returns the name of the template of the bats.
- */
- const std::string& getBattemplate() const
- { return this->battemplate_; }
-
- /**
- @brief Set the dimensions of the playing field.
- @param dimension A vector with the width of the playing field as first component and the height as second.
- */
- void setFieldDimension(const Vector2& dimension)
- { this->width_ = dimension.x; this->height_ = dimension.y; }
- /**
- @brief Get the dimensions of the playing field.
- @return Returns a vector with the width of the playing field as first component and the height as second.
- */
- Vector2 getFieldDimension() const
- { return Vector2(this->width_, this->height_); }
-
- /**
- @brief Set the speed of the ball.
- @param ballspeed The speed of the ball.
- */
- void setBallSpeed(float ballspeed)
- { this->ballspeed_ = ballspeed; }
- /**
- @brief Get the speed of the ball.
- @return Returns the speed of the ball.
- */
- float getBallSpeed() const
- { return this->ballspeed_; }
-
- /**
- @brief Set the ball's acceleration factor.
- @param ballaccfactor The ball's acceleration factor.
- */
- void setBallAccelerationFactor(float ballaccfactor)
- { this->ballaccfactor_ = ballaccfactor; }
- /**
- @brief Get the ball's acceleration factor
- @return Returns the ball's acceleration factor.
- */
- float getBallAccelerationFactor() const
- { return this->ballaccfactor_; }
-
- /**
- @brief Set the speed of the bats.
- @param batspeed The speed of the bats.
- */
- void setBatSpeed(float batspeed)
- { this->batspeed_ = batspeed; }
- /**
- @brief Get the speed of the bats.
- @return Returns the speed of the bats.
- */
- float getBatSpeed() const
- { return this->batspeed_; }
-
- /**
- @brief Set the length of the bats.
- @param batlength The length of the bats (in z-direction) as a percentage of the height of the playing field.
- */
- void setBatLength(float batlength)
- { this->batlength_ = batlength; }
- /**
- @brief Get the length of the bats.
- @return Returns the length of the bats (in z-direction) as a percentage of the height of the playing field.
- */
- float getBatLength() const
- { return this->batlength_; }
-
- private:
- void checkGametype(); //!< Checks whether the gametype is Pong and if it is, sets its centerpoint.
-
- std::string balltemplate_; //!< The template for the ball.
- std::string battemplate_; //!< The template for the bats.
-
- float ballspeed_; //!< The speed of then ball.
- float ballaccfactor_; //!< The acceleration factor of the ball.
- float batspeed_; //!< The speed of the bat.
- float batlength_; //!< The length of the bat (in z-direction) as a percentage of the height of the playing field.
-
- float width_; //!< The height of the playing field.
- float height_; //!< The width of the playing field.
- };
-}
-
-#endif /* _PongCenterpoint_H__ */
Deleted: code/branches/tetris/src/modules/tetris/PongPrereqs.h
===================================================================
--- code/branches/tetris/src/modules/pong/PongPrereqs.h 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongPrereqs.h 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,76 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Reto Grieder
- * Co-authors:
- * ...
- *
- */
-
-/**
- at file
- at brief
- Shared library macros, enums, constants and forward declarations for the pong module
-*/
-
-#ifndef _PongPrereqs_H__
-#define _PongPrereqs_H__
-
-#include "OrxonoxConfig.h"
-#include "OrxonoxPrereqs.h"
-
-//-----------------------------------------------------------------------
-// Shared library settings
-//-----------------------------------------------------------------------
-
-#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined(PONG_STATIC_BUILD)
-# ifdef PONG_SHARED_BUILD
-# define _PongExport __declspec(dllexport)
-# else
-# if defined( __MINGW32__ )
-# define _PongExport
-# else
-# define _PongExport __declspec(dllimport)
-# endif
-# endif
-#elif defined ( ORXONOX_GCC_VISIBILITY )
-# define _PongExport __attribute__ ((visibility("default")))
-#else
-# define _PongExport
-#endif
-
-//-----------------------------------------------------------------------
-// Forward declarations
-//-----------------------------------------------------------------------
-
-namespace orxonox
-{
- class Pong;
- class PongAI;
- class PongBall;
- class PongBat;
- class PongBot;
- class PongCenterpoint;
- class PongScore;
-}
-
-#endif /* _PongPrereqs_H__ */
Deleted: code/branches/tetris/src/modules/tetris/PongScore.cc
===================================================================
--- code/branches/tetris/src/modules/pong/PongScore.cc 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongScore.cc 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,172 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongScore.cc
- @brief Implementation of the PongScore class.
-*/
-
-#include "PongScore.h"
-
-#include "core/CoreIncludes.h"
-#include "core/XMLPort.h"
-#include "util/Convert.h"
-
-#include "infos/PlayerInfo.h"
-
-#include "Pong.h"
-
-namespace orxonox
-{
- CreateFactory(PongScore);
-
- /**
- @brief
- Constructor. Registers and initializes the object.
- */
- PongScore::PongScore(BaseObject* creator) : OverlayText(creator)
- {
- RegisterObject(PongScore);
-
- this->owner_ = 0;
-
- this->bShowName_ = false;
- this->bShowScore_ = false;
- this->bShowLeftPlayer_ = false;
- this->bShowRightPlayer_ = false;
- }
-
- /**
- @brief
- Destructor.
- */
- PongScore::~PongScore()
- {
- }
-
- /**
- @brief
- Method to create a PongScore through XML.
- */
- void PongScore::XMLPort(Element& xmlelement, XMLPort::Mode mode)
- {
- SUPER(PongScore, XMLPort, xmlelement, mode);
-
- XMLPortParam(PongScore, "showname", setShowName, getShowName, xmlelement, mode).defaultValues(false);
- XMLPortParam(PongScore, "showscore", setShowScore, getShowScore, xmlelement, mode).defaultValues(false);
- XMLPortParam(PongScore, "showleftplayer", setShowLeftPlayer, getShowLeftPlayer, xmlelement, mode).defaultValues(false);
- XMLPortParam(PongScore, "showrightplayer", setShowRightPlayer, getShowRightPlayer, xmlelement, mode).defaultValues(false);
- }
-
- /**
- @brief
- Is called each tick.
- Creates and sets the caption to be displayed by the PongScore.
- @param dt
- The time that has elapsed since the last tick.
- */
- void PongScore::tick(float dt)
- {
- SUPER(PongScore, tick, dt);
-
- // If the owner is set. The owner being a Pong game.
- if (this->owner_ != NULL)
- {
- // Get the two players.
- PlayerInfo* player1 = this->owner_->getLeftPlayer();
- PlayerInfo* player2 = this->owner_->getRightPlayer();
-
- std::string name1;
- std::string name2;
-
- std::string score1("0");
- std::string score2("0");
-
- // Save the name and score of each player as a string.
- if (player1 != NULL)
- {
- name1 = player1->getName();
- score1 = multi_cast<std::string>(this->owner_->getScore(player1));
- }
- if (player2 != NULL)
- {
- name2 = player2->getName();
- score2 = multi_cast<std::string>(this->owner_->getScore(player2));
- }
-
- // Assemble the strings, depending on what should all be displayed.
- std::string output1;
- if (this->bShowLeftPlayer_)
- {
- if (this->bShowName_ && this->bShowScore_ && player1 != NULL)
- output1 = name1 + " - " + score1;
- else if (this->bShowScore_)
- output1 = score1;
- else if (this->bShowName_)
- output1 = name1;
- }
-
- std::string output2;
- if (this->bShowRightPlayer_)
- {
- if (this->bShowName_ && this->bShowScore_ && player2 != NULL)
- output2 = score2 + " - " + name2;
- else if (this->bShowScore_)
- output2 = score2;
- else if (this->bShowName_)
- output2 = name2;
- }
-
- std::string output("PONG");
- if (this->bShowName_ || this->bShowScore_)
- {
- if (this->bShowLeftPlayer_ && this->bShowRightPlayer_)
- output = output1 + ':' + output2;
- else if (this->bShowLeftPlayer_ || this->bShowRightPlayer_)
- output = output1 + output2;
- }
-
- this->setCaption(output);
- }
- }
-
- /**
- @brief
- Is called when the owner changes.
- Sets the owner to NULL, if it is not a pointer to a Pong game.
- */
- void PongScore::changedOwner()
- {
- SUPER(PongScore, changedOwner);
-
- if (this->getOwner() != NULL && this->getOwner()->getGametype())
- this->owner_ = orxonox_cast<Pong*>(this->getOwner()->getGametype().get());
- else
- this->owner_ = 0;
- }
-}
Deleted: code/branches/tetris/src/modules/tetris/PongScore.h
===================================================================
--- code/branches/tetris/src/modules/pong/PongScore.h 2011-04-09 13:33:06 UTC (rev 8213)
+++ code/branches/tetris/src/modules/tetris/PongScore.h 2011-04-18 10:39:06 UTC (rev 8247)
@@ -1,126 +0,0 @@
-/*
- * ORXONOX - the hottest 3D action shooter ever to exist
- * > www.orxonox.net <
- *
- *
- * License notice:
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * Author:
- * Fabian 'x3n' Landau
- * Co-authors:
- * ...
- *
- */
-
-/**
- @file PongScore.h
- @brief Declaration of the PongScore class.
- @ingroup Pong
-*/
-
-#ifndef _PongScore_H__
-#define _PongScore_H__
-
-#include "pong/PongPrereqs.h"
-
-#include "tools/interfaces/Tickable.h"
-
-#include "overlays/OverlayText.h"
-
-namespace orxonox
-{
-
- /**
- @brief
- The PongScore class displays the score for a game of @ref orxonox::Pong "Pong".
-
- @author
- Fabian 'x3n' Landau
-
- @ingroup Pong
- */
- class _PongExport PongScore : public OverlayText, public Tickable
- {
- public:
- PongScore(BaseObject* creator);
- virtual ~PongScore();
-
- virtual void tick(float dt); //!< Creates and sets the caption to be displayed by the PongScore.
- virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
- virtual void changedOwner(); //!< Is called when the owner changes.
-
- /**
- @brief Set whether the PongScore displays the players' names.
- @param value If true the players' names are displayed.
- */
- inline void setShowName(bool value)
- { this->bShowName_ = value; }
- /**
- @brief Get whether the PongScore displays the players' names.
- @return Returns true if the players' names are displayed, false otherwise.
- */
- inline bool getShowName() const
- { return this->bShowName_; }
-
- /**
- @brief Set whether the PongScore displays the players' scores.
- @param value If true the players' scores are displayed.
- */
- inline void setShowScore(bool value)
- { this->bShowScore_ = value; }
- /**
- @brief Get whether the PongScore displays the players' scores.
- @return Returns true if the players' scores are displayed, false otherwise.
- */
- inline bool getShowScore() const
- { return this->bShowScore_; }
-
- /**
- @brief Set whether the PongScore displays the left player.
- @param value If true the left player is displayed.
- */
- inline void setShowLeftPlayer(bool value)
- { this->bShowLeftPlayer_ = value; }
- /**
- @brief Get whether the PongScore displays the left player.
- @return Returns true if the left player is displayed, false otherwise.
- */
- inline bool getShowLeftPlayer() const
- { return this->bShowLeftPlayer_; }
-
- /**
- @brief Set whether the PongScore displays the right player.
- @param value If true the right player is displayed.
- */
- inline void setShowRightPlayer(bool value)
- { this->bShowRightPlayer_ = value; }
- /**
- @brief Get whether the PongScore displays the right player.
- @return Returns true if the right player is displayed, false otherwise.
- */
- inline bool getShowRightPlayer() const
- { return this->bShowRightPlayer_; }
-
- private:
- Pong* owner_; //!< The Pong game that owns this PongScore.
- bool bShowName_; //!< Whether the names of the players are shown.
- bool bShowScore_; //!< Whether the score of the players is shown.
- bool bShowLeftPlayer_; //!< Whether the left player is shown.
- bool bShowRightPlayer_; //!< Whether the right player is shown.
- };
-}
-#endif /* _PongScore_H__ */
More information about the Orxonox-commit
mailing list