summaryrefslogtreecommitdiffstats
path: root/dev/a2-carsoccer/ball.h
blob: a43eb31b605f11a63d6d5792051e416120d53d6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/** CSci-4611 Assignment 2:  Car Soccer
 */

#ifndef BALL_H_
#define BALL_H_

#include <mingfx.h>
using namespace mingfx;

/// Small class representing the ball.  Feel free to add additional member variables and functions if you wish.
class Ball {
public:
    
    Ball();
    virtual ~Ball();
    
    // The same radius is used to draw the ball and to calculate physics for the ball
    float radius();

    // Current 3D position
    Point3 position();
    void set_position(const Point3 &p);

    // Current 3D velocity
    Vector3 velocity();
    void set_velocity(const Vector3 &v);
    
    // Resets the ball's position and velocity to initial values.
    void Reset();
    
    void Draw(QuickShapes quickShapes, Matrix4 modelMatrix, Matrix4 viewMatrix, Matrix4 projMatrix);
    
private:
    Point3 position_;
    Vector3 velocity_;
    float radius_;
};

#endif