diff --git a/include/config.h b/include/config.h index 8294118a..82f89034 100644 --- a/include/config.h +++ b/include/config.h @@ -28,6 +28,8 @@ #define QT_UI +//#define SELF_MOVE + //#define MOBILE_APP_UI //#define TRAINING_MODE @@ -104,6 +106,10 @@ #define DONOT_PLAY_SOUND #endif +#ifdef SELF_MOVE +#define DONOT_PLAY_SOUND +#endif + //#define DONOT_PLAY_SOUND #ifdef DEBUG_MODE diff --git a/src/option.h b/src/option.h index b0a1cfee..460117fa 100644 --- a/src/option.h +++ b/src/option.h @@ -57,7 +57,11 @@ private: bool isAutoRestart { false }; bool isAutoChangeFirstMove { false }; bool resignIfMostLose { false }; +#ifdef SELF_MOVE + bool randomMoveEnabled { false }; +#else bool randomMoveEnabled { true }; +#endif #ifdef ENDGAME_LEARNING_FORCE bool learnEndgame { true }; #else diff --git a/src/ui/qt/gamewindow.cpp b/src/ui/qt/gamewindow.cpp index d7e731a3..fbd2528d 100644 --- a/src/ui/qt/gamewindow.cpp +++ b/src/ui/qt/gamewindow.cpp @@ -209,6 +209,11 @@ void MillGameWindow::initialize() //ui.actionEngine2_R->setChecked(false); #endif // TEST_MODE +#ifdef SELF_MOVE + ui.actionEngine1_T->setChecked(true); + ui.actionEngine2_R->setChecked(true); +#endif // SELF_MOVE + connect(ui.actionSound_S, SIGNAL(toggled(bool)), gameController, SLOT(setSound(bool)));