ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
basketball.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef SCUMM_HE_BASKETBALL_BASKETBALL_H
23 #define SCUMM_HE_BASKETBALL_BASKETBALL_H
24 
25 #ifdef ENABLE_HE
26 
27 #include "scumm/he/intern_he.h"
28 #include "scumm/he/logic_he.h"
29 #include "scumm/he/basketball/court.h"
30 #include "scumm/he/basketball/collision/bball_collision_player.h"
31 #include "scumm/he/basketball/collision/bball_collision_shields.h"
32 
33 #include "common/array.h"
34 #include "common/stack.h"
35 #include "common/queue.h"
36 #include "common/std/set.h"
37 
38 namespace Scumm {
39 
40 class LogicHEBasketball;
41 
42 class Basketball {
43 
44 public:
45  Basketball(ScummEngine_v100he *vm);
46  ~Basketball();
47 
48  int u32FloatToInt(float input);
49  int u32DoubleToInt(double input);
50 
51  int numOpponentsInCone(int team, float widthDistanceRatio, const U32FltVector2D &end, const U32FltVector2D &focus);
52  float congestion(U32FltVector2D pos, bool ignore, int whichPlayer);
53  void fillPlayerTargetList(const CCollisionPlayer *sourceObject, CCollisionObjectVector *targetList);
54  void fillBallTargetList(const CCollisionSphere *sourceObject, CCollisionObjectVector *targetList);
55  double getLaunchAngle(int velocity, int hDist, int vDist, int gravity);
56  float getAvoidanceDistance(const U32Circle &playerMarker, const CCollisionPlayer &obstacle);
57  CCollisionPlayer *detectObstacle(const U32Circle &playerMarker, int playerID, const U32FltPoint2D &targetLocation, bool targetIsObstacle, U32FltPoint2D *intersection, CBBallCourt *court);
58  bool avoidObstacle(const U32Circle &playerMarker, const U32FltPoint2D &targetLocation, const CCollisionPlayer &obstacle, ERevDirection whichDirection, U32FltPoint2D *newTarget);
59  ERevDirection getAvoidanceDirection(const U32Circle &playerMarker, const U32FltPoint2D &targetLocation, const CCollisionPlayer &obstacle);
60  bool getPathDistance(U32Circle *playerMarker, int playerID, Common::Stack<U32FltPoint2D> *targetStack, ERevDirection lastTurn, float *pathDistance, Common::Queue<U32FltPoint2D> *wayPointQueue, Std::set<int> *obstacleSet, CBBallCourt *court);
61 
62  void pushTargetOutOfObstacle(const U32Circle &playerMarker,
63  const CCollisionPlayer &obstacle,
64  Common::Stack<U32FltPoint2D> *targetStack);
65 
66  ERevDirection getBestPath(const U32Circle &playerMarker,
67  int playerID,
68  Common::Stack<U32FltPoint2D> *targetStack,
69  CCollisionPlayer *obstacle,
70  ERevDirection lastTurn,
71  float *distance,
72  Common::Queue<U32FltPoint2D> *wayPointQueue,
73  Std::set<int> *obstacleSet,
74  CBBallCourt *court);
75 
76  CBBallCourt *_court;
77  CCollisionShieldVector *_shields;
78 
79 private:
80  ScummEngine_v100he *_vm;
81 };
82 
83 } // End of namespace Scumm
84 
85 #endif // ENABLE_HE
86 
87 #endif // SCUMM_HE_BASKETBALL_BASKETBALL_H
Definition: queue.h:42
Definition: set.h:42
Definition: stack.h:102
Definition: actor.h:30