Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 9, 2015, 2:09:38 PM (8 years ago)
Author:
bucyril
Message:

Finished hover ship control and resolved merge conflict
—this line, and those below, will be ignored—

M src/modules/hover/HoverShip.cc
M src/modules/hover/HoverShip.h
M data/levels/templates/spaceshipHover.oxt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/hoverHS15/src/modules/hover/HoverShip.h

    r10760 r10784  
    3535#define _HoverShip_H__
    3636
     37#include <BulletCollision/NarrowPhaseCollision/btManifoldPoint.h>
    3738
    3839#include "HoverPrereqs.h"
     
    4142#include "worldentities/pawns/SpaceShip.h"
    4243#include "graphics/Camera.h"
     44#include "core/class/Super.h"
    4345
    4446#include "Hover.h" // Is necessary for getGame function
     
    4850    class _HoverExport HoverShip : public SpaceShip
    4951    {
     52    private:
     53        float jumpBoost_;
     54        bool isFloor_;
     55
    5056        public:
    5157            HoverShip(Context* context);
     
    5359            virtual void tick(float dt);
    5460
    55                     /*virtual void moveFrontBack(const Vector2& value);
     61            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
     62
     63            virtual void setJumpBoost(float jumpBoost);
     64
     65                virtual float getJumpBoost();
     66
     67                    virtual void moveFrontBack(const Vector2& value);
    5668
    5769                    virtual void moveRightLeft(const Vector2& value);
     
    6375                    virtual void rotatePitch(const Vector2& value);
    6476                   
    65                     virtual void rotateRoll(const Vector2& value);*/
     77                    virtual void rotateRoll(const Vector2& value);
    6678
    6779                    virtual bool collidesAgainst(WorldEntity* otherObject, const btCollisionShape* cs, btManifoldPoint& contactPoint);
Note: See TracChangeset for help on using the changeset viewer.