str/apps/include/LeftCourse.h (38 lines of code) (raw):

/** * @file LeftCourse.h * @brief Lコースを走らせるときに呼び出されるクラス * @author Futa HIRAKOBA */ #ifndef __LEFT_COURSE__ #define __LEFT_COURSE__ #define IS_SHORT_CUT 0 #include "Walker.h" #include "ColorSensor.h" #include "LeftNormalCourse.h" #include "SelfLocalization.h" #include "PuzzleField.h" #include "Navigation.h" #include "Parking.h" #include "TargetFigure.h" #include "PuzzleCodeConverter.h" using namespace ev3api; /** * Lコースを走らせるときに呼び出されるクラス */ class LeftCourse { public: /** コンストラクタ。センサ類の初期化を行う */ LeftCourse(); /** * このクラスのインスタンスを保持しているインスタンスまたはメンバ関数が、 * UserInterfaceクラスのgetFirstCodeメンバ関数から * 取得した初期位置コードを入力する。 * @param 初期位置コード 0から99999まで */ void setFirstCode( int32_t ); /** 各エリアの処理を呼び出す */ void run(); /** NormalCourseエリアの処理 */ void runNormalCourse(); #if IS_SHORT_CUT void runTyokusen(float, float, float, float, bool); #endif /** * ブロック並べを行う。 * PuzzleFieldクラスに依存する。 */ void runBlockRange(); /** * 縦列駐車を行う。 * Parkingクラスに依存する。 */ void runParallelParking(); private: Walker walker; ColorSensor colorSensor; /** 自己位置推定 インスタンス 初期化*/ SelfLocalization sl; TargetFigure targetFigure ; PuzzleCodeConverter codeConverter ; PuzzleExplorer explorer; #if IS_SHORT_CUT Navigation navi; #endif /** * UserInterfaceの初期位置コードを記録する。 * ブロック並べに用いる。 */ int32_t firstCode; const int green = 8 ; // 緑の値はココ }; #endif