Rigs of Rods 2023.09
Soft-body Physics Simulation
Loading...
Searching...
No Matches
Controller.h
Go to the documentation of this file.
1/*
2--------------------------------------------------------------------------------
3This source file is part of SkyX.
4Visit http://www.paradise-studios.net/products/skyx/
5
6Copyright (C) 2009-2012 Xavier Verguín González <xavyiy@gmail.com>
7
8This program is free software; you can redistribute it and/or modify it under
9the terms of the GNU Lesser General Public License as published by the Free Software
10Foundation; either version 2 of the License, or (at your option) any later
11version.
12
13This program is distributed in the hope that it will be useful, but WITHOUT
14ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
16
17You should have received a copy of the GNU Lesser General Public License along with
18this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19Place - Suite 330, Boston, MA 02111-1307, USA, or go to
20http://www.gnu.org/copyleft/lesser.txt.
21--------------------------------------------------------------------------------
22*/
23
24#ifndef _SkyX_Controller_H_
25#define _SkyX_Controller_H_
26
27#include "Prerequisites.h"
28
29namespace SkyX
30{
34 {
35 public:
39 inline Controller(const bool& deleteBySkyX)
40 : mDeleteBySkyX(deleteBySkyX)
41 {
42 }
43
46 inline virtual ~Controller(){}
47
52 inline virtual void update(const Ogre::Real& simDeltaTime){}
53
57 virtual Ogre::Vector3 getSunDirection() = 0;
58
62 virtual Ogre::Vector3 getMoonDirection() = 0;
63
67 virtual Ogre::Real getMoonPhase() = 0;
68
72 inline const bool& getDeleteBySkyX() const
73 {
74 return mDeleteBySkyX;
75 }
76
77 private:
80 };
81}
82
83#endif
Controller base class.
Definition Controller.h:34
virtual ~Controller()
Destructor.
Definition Controller.h:46
bool mDeleteBySkyX
Must the controller be destroyed by SkyX?
Definition Controller.h:79
virtual Ogre::Vector3 getMoonDirection()=0
Get moon direction.
const bool & getDeleteBySkyX() const
Must the controller be destroyed by SkyX?
Definition Controller.h:72
Controller(const bool &deleteBySkyX)
Constructor.
Definition Controller.h:39
virtual Ogre::Vector3 getSunDirection()=0
Get sun direction.
virtual void update(const Ogre::Real &simDeltaTime)
Update controller.
Definition Controller.h:52
virtual Ogre::Real getMoonPhase()=0
Get moon phase.