summaryrefslogtreecommitdiffhomepage
path: root/Stars45/FlightComp.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/FlightComp.h')
-rw-r--r--Stars45/FlightComp.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/Stars45/FlightComp.h b/Stars45/FlightComp.h
index 8696cd0..504e76c 100644
--- a/Stars45/FlightComp.h
+++ b/Stars45/FlightComp.h
@@ -1,15 +1,15 @@
/* Project STARSHATTER
- John DiCamillo
- Copyright © 1997-2002. All Rights Reserved.
+ John DiCamillo
+ Copyright © 1997-2002. All Rights Reserved.
- SUBSYSTEM: Stars.exe
- FILE: FlightComp.h
- AUTHOR: John DiCamillo
+ SUBSYSTEM: Stars.exe
+ FILE: FlightComp.h
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Flight Computer systems class
+ OVERVIEW
+ ========
+ Flight Computer systems class
*/
#ifndef FLIGHT_COMP_H
@@ -28,35 +28,35 @@ class Ship;
class FlightComp : public Computer
{
public:
- enum CompType { AVIONICS=1, FLIGHT, TACTICAL };
+ enum CompType { AVIONICS=1, FLIGHT, TACTICAL };
- FlightComp(int comp_type, const char* comp_name);
- FlightComp(const Computer& rhs);
- virtual ~FlightComp();
+ FlightComp(int comp_type, const char* comp_name);
+ FlightComp(const Computer& rhs);
+ virtual ~FlightComp();
- virtual void ExecSubFrame();
+ virtual void ExecSubFrame();
- int Mode() const { return mode; }
- double Throttle() const { return throttle; }
+ int Mode() const { return mode; }
+ double Throttle() const { return throttle; }
- void SetMode(int m) { mode = m; }
- void SetVelocityLimit(double v) { vlimit = (float) v; }
- void SetTransLimit(double x, double y, double z);
+ void SetMode(int m) { mode = m; }
+ void SetVelocityLimit(double v) { vlimit = (float) v; }
+ void SetTransLimit(double x, double y, double z);
- void FullStop() { halt = true; }
+ void FullStop() { halt = true; }
protected:
- virtual void ExecTrans();
- virtual void ExecThrottle();
+ virtual void ExecTrans();
+ virtual void ExecThrottle();
- int mode;
- int halt;
- float throttle;
+ int mode;
+ int halt;
+ float throttle;
- float vlimit;
- float trans_x_limit;
- float trans_y_limit;
- float trans_z_limit;
+ float vlimit;
+ float trans_x_limit;
+ float trans_y_limit;
+ float trans_z_limit;
};
#endif FLIGHT_COMP_H