]> git.tdb.fi Git - r2c2.git/blobdiff - source/libr2c2/aicontrol.h
Don't crash if a train has no router
[r2c2.git] / source / libr2c2 / aicontrol.h
index 01429cdd01581481918eefe10e1d22abd6d90c0e..a9f9de14c92c0bff35ab3dfb1357486eb524d075 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of R²C²
-Copyright © 2010-2011  Mikkosoft Productions, Mikko Rasa
-Distributed under the GPL
-*/
-
 #ifndef LIBR2C2_AICONTROL_H_
 #define LIBR2C2_AICONTROL_H_
 
@@ -41,10 +34,11 @@ public:
        bool get_reverse() const { return reverse; } 
 
        virtual void message(const Message &);
-       virtual void tick(const Msp::Time::TimeStamp &, const Msp::Time::TimeDelta &);
+       virtual void tick(const Msp::Time::TimeDelta &);
+       virtual bool has_intent_to_move() const;
 
 private:
-       void arrived();
+       void event(TrainAI &, const Message &);
 };
 
 } // namespace R2C2