Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/AI_HS15/src/orxonox/controllers/CommonController.h @ 10803

Last change on this file since 10803 was 10803, checked in by gania, 9 years ago

Works for DivisionController for now. Almost balanced AI! Dodges bullets (still killable, which is good), but goes crazy when close. So to be destroyed when far away. TODO implement formation flight when not in fight

File size: 6.3 KB
RevLine 
[10719]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 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _CommonController_H__
30#define _CommonController_H__
31
32
33#include "controllers/Controller.h"
34#include "worldentities/ControllableEntity.h"
[10759]35#include "worldentities/pawns/Pawn.h"
[10780]36#include "core/ClassTreeMask.h"
[10719]37
[10759]38
[10719]39namespace orxonox
40{
[10759]41
42    namespace FormationMode
43    {
44        enum Value
45        {
46            VEE, FINGER4, DIAMOND, WALL
47        };
48    }
49    namespace Rank
50    {
51        enum Value
52        { 
53            NONE, SECTIONLEADER, DIVISIONLEADER, WINGMAN
54        };
55
56    }
[10761]57    //none for a formation flight without attacking, neutral when opponent and this have no
58    //advantage over each other, offensive when this spotted opponent first,
59    //defensive otherwise
60    namespace ManeuverType
61    {
62        enum Value
63        { 
64            NONE, NEUTRAL, OFFENSIVE, DEFENCIVE
65        };
[10759]66
[10761]67    }
68    //none for a formation flight
69    namespace Maneuver
70    {
71        enum Value
72        {
73            NONE, GUNSD, SCISSORS, COMBATSPREAD, DEFENSIVESPLIT, BREAK, BARRELROLL, SWOOP, IMMELMANN, 
74            WINGOVER, LOWYOYO, HIGHYOYO, LAGDISPLACEMENTROLL
75        };
76    }
77
[10789]78
[10719]79    class _OrxonoxExport CommonController : public Controller
80    {
[10796]81
[10719]82        public:
[10803]83            static const float hardcoded_projectile_speed = 750;
[10731]84
[10803]85            static const float ACTION_INTERVAL = 1.0f;
[10729]86
[10731]87
88            CommonController(Context* context);
89            virtual ~CommonController();
90
91
92
[10759]93
94
95            virtual void setFormationMode(FormationMode::Value val)
[10725]96                { this->formationMode_ = val; }
[10759]97            inline FormationMode::Value getFormationMode() const
[10725]98                { return this->formationMode_; }
[10759]99            virtual void setFormationModeXML(std::string val);
100            virtual std::string getFormationModeXML();
[10725]101
[10759]102            virtual void setRank(Rank::Value val)
[10731]103                { this->rank_ = val; }
[10759]104            inline Rank::Value getRank() const
[10731]105                { return this->rank_; }
106
[10759]107            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
[10731]108
109
110
[10719]111            virtual bool setWingman(CommonController* wingman);
[10722]112            virtual bool hasWingman();
[10719]113
[10759]114            void setTarget(ControllableEntity* target);
[10793]115            bool hasTarget();
[10803]116            ControllableEntity* getTarget();
[10729]117            void setTargetOrientation(const Quaternion& orient);
118            void setTargetOrientation(ControllableEntity* target);
119            void setTargetPosition(const Vector3& target);
120
[10731]121            /*void spin();
122            void turn180();*/
123
124
[10719]125        protected:
[10803]126            void dodge(Vector3& thisPosition, Vector3& diffUnit);
127            int counter;
[10789]128            void moveToPoint(const Vector3& relativeTargetPosition, float angleRoll);
129            bool moveAndRoll(float dt);
130
131            void moveToPosition(const Vector3& target, float dt);
132            void moveToTargetPosition(float dt);
[10737]133            //enum Mode {ROCKET, ATTACK, MOVE, HOLD};//TODO; implement DEFENCE, MOVING modes
[10719]134
[10737]135            //Mode mode_;
[10789]136            void copyOrientation(const Quaternion& orient, float dt);
137            void copyTargetOrientation(float dt);
[10725]138
[10782]139            float squaredDistanceToTarget() const;
[10731]140            void doFire();
141            void aimAtTarget();
142            bool isLookingAtTarget(float angle) const;
[10803]143            bool isLooking( ControllableEntity* entityThatLooks, ControllableEntity* entityBeingLookedAt, float angle )const;
[10725]144
[10762]145            //checks if spaceship points at enemy and if there are allies inbetween
146            bool canFire();
[10737]147            std::map<std::string, int> weaponModes_; //<! Links each "weapon" to it's weaponmode - managed by setupWeapons()
148            //std::vector<int> projectiles_; //<! Displays amount of projectiles of each weapon. - managed by setupWeapons()
149            float timeout_; //<! Timeout for rocket usage. (If a rocket misses, a bot should stop using it.)
150            void setupWeapons(); //<! Defines which weapons are available for a bot. Is recalled whenever a bot was killed.
151            bool bSetupWorked; //<! If false, setupWeapons() is called.
152            int getFiremode(std::string name);
153
[10796]154            float randomInRange(float a, float b);
[10725]155            bool bHasTargetPosition_;
156            Vector3 targetPosition_;
157            bool bHasTargetOrientation_;
158            Quaternion targetOrientation_;
159
[10803]160            void stopMoving();
[10793]161            void setPositionOfTarget(const Vector3& target);
162            void setOrientationOfTarget(const Quaternion& orient);
[10782]163            bool bHasPositionOfTarget_;
164            Vector3 positionOfTarget_;
165            bool bHasOrientationOfTarget_;
166            Quaternion orientationOfTarget_;
[10761]167
[10782]168
[10725]169            WeakPtr<ControllableEntity> target_;
[10803]170            //WeakPtr<ControllableEntity> thisEntity_;
171
172            bool bEngaging_;
[10725]173            bool bShooting_;
[10761]174            WeakPtr<ControllableEntity> objectiveTarget_;
[10725]175
[10803]176            void lookAtTarget(float dt);
177            void stopLookingAtTarget();
178            void startLookingAtTarget();
179            bool bLookAtTarget_;
[10800]180            void maneuver();
[10793]181            void chooseManeuverType();
[10796]182            void gunsD();
183            void attack();
184            void scissors();
[10759]185            FormationMode::Value formationMode_;
186            Rank::Value rank_;
[10761]187            ManeuverType::Value maneuverType_;
188            Maneuver::Value maneuver_;
[10780]189
[10789]190            bool executingManeuver_;
191            bool executingMoveToPoint_;
[10719]192         
193        private:
194           
195               
196    };
197}
198
199#endif /* _CommonController_H__ */
Note: See TracBrowser for help on using the repository browser.