├── .gitignore ├── LICENSE ├── README.md ├── ShogiBoard.sln └── ShogiBoard ├── App.config ├── CSAFileWriter.cs ├── Config.cs ├── ConfigForm.Designer.cs ├── ConfigForm.cs ├── ConfigForm.resx ├── ConfigLoader.cs ├── ConfigSerializer.cs ├── Engine.cs ├── EngineForm.Designer.cs ├── EngineForm.cs ├── EngineForm.resx ├── EngineList.cs ├── EngineListForm.Designer.cs ├── EngineListForm.cs ├── EngineListForm.resx ├── EngineOptionsControl.Designer.cs ├── EngineOptionsControl.cs ├── EngineOptionsControl.resx ├── EngineSelectControl.Designer.cs ├── EngineSelectControl.cs ├── EngineSelectControl.resx ├── EngineTimeOptionControl.Designer.cs ├── EngineTimeOptionControl.cs ├── EngineTimeOptionControl.resx ├── EngineViewControl.Designer.cs ├── EngineViewControl.cs ├── EngineViewControl.resx ├── Exceptions └── USIEngineException.cs ├── FormUtility.cs ├── GameForm.Designer.cs ├── GameForm.cs ├── GameForm.resx ├── GameGraphControl.Designer.cs ├── GameGraphControl.cs ├── GameGraphControl.resx ├── GameTimePickerControl.Designer.cs ├── GameTimePickerControl.cs ├── GameTimePickerControl.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MateForm.Designer.cs ├── MateForm.cs ├── MateForm.resx ├── NetworkGameConnectionControl.Designer.cs ├── NetworkGameConnectionControl.cs ├── NetworkGameConnectionControl.resx ├── NetworkGameForm.Designer.cs ├── NetworkGameForm.cs ├── NetworkGameForm.resx ├── PlayerInfoControl.Designer.cs ├── PlayerInfoControl.cs ├── PlayerInfoControl.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ShogiBoard.csproj ├── ThinkForm.Designer.cs ├── ThinkForm.cs ├── ThinkForm.resx ├── TimePickerControl.Designer.cs ├── TimePickerControl.cs ├── TimePickerControl.resx ├── VolatileConfig.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/README.md -------------------------------------------------------------------------------- /ShogiBoard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard.sln -------------------------------------------------------------------------------- /ShogiBoard/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/App.config -------------------------------------------------------------------------------- /ShogiBoard/CSAFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/CSAFileWriter.cs -------------------------------------------------------------------------------- /ShogiBoard/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Config.cs -------------------------------------------------------------------------------- /ShogiBoard/ConfigForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ConfigForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/ConfigForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ConfigForm.cs -------------------------------------------------------------------------------- /ShogiBoard/ConfigForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ConfigForm.resx -------------------------------------------------------------------------------- /ShogiBoard/ConfigLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ConfigLoader.cs -------------------------------------------------------------------------------- /ShogiBoard/ConfigSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ConfigSerializer.cs -------------------------------------------------------------------------------- /ShogiBoard/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Engine.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineForm.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineForm.resx -------------------------------------------------------------------------------- /ShogiBoard/EngineList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineList.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineListForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineListForm.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineListForm.resx -------------------------------------------------------------------------------- /ShogiBoard/EngineOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineOptionsControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineOptionsControl.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineOptionsControl.resx -------------------------------------------------------------------------------- /ShogiBoard/EngineSelectControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineSelectControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineSelectControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineSelectControl.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineSelectControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineSelectControl.resx -------------------------------------------------------------------------------- /ShogiBoard/EngineTimeOptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineTimeOptionControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineTimeOptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineTimeOptionControl.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineTimeOptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineTimeOptionControl.resx -------------------------------------------------------------------------------- /ShogiBoard/EngineViewControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineViewControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineViewControl.cs -------------------------------------------------------------------------------- /ShogiBoard/EngineViewControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/EngineViewControl.resx -------------------------------------------------------------------------------- /ShogiBoard/Exceptions/USIEngineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Exceptions/USIEngineException.cs -------------------------------------------------------------------------------- /ShogiBoard/FormUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/FormUtility.cs -------------------------------------------------------------------------------- /ShogiBoard/GameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/GameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameForm.cs -------------------------------------------------------------------------------- /ShogiBoard/GameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameForm.resx -------------------------------------------------------------------------------- /ShogiBoard/GameGraphControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameGraphControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/GameGraphControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameGraphControl.cs -------------------------------------------------------------------------------- /ShogiBoard/GameGraphControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameGraphControl.resx -------------------------------------------------------------------------------- /ShogiBoard/GameTimePickerControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameTimePickerControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/GameTimePickerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameTimePickerControl.cs -------------------------------------------------------------------------------- /ShogiBoard/GameTimePickerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/GameTimePickerControl.resx -------------------------------------------------------------------------------- /ShogiBoard/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/MainForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/MainForm.cs -------------------------------------------------------------------------------- /ShogiBoard/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/MainForm.resx -------------------------------------------------------------------------------- /ShogiBoard/MateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/MateForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/MateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/MateForm.cs -------------------------------------------------------------------------------- /ShogiBoard/MateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/MateForm.resx -------------------------------------------------------------------------------- /ShogiBoard/NetworkGameConnectionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/NetworkGameConnectionControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/NetworkGameConnectionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/NetworkGameConnectionControl.cs -------------------------------------------------------------------------------- /ShogiBoard/NetworkGameConnectionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/NetworkGameConnectionControl.resx -------------------------------------------------------------------------------- /ShogiBoard/NetworkGameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/NetworkGameForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/NetworkGameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/NetworkGameForm.cs -------------------------------------------------------------------------------- /ShogiBoard/NetworkGameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/NetworkGameForm.resx -------------------------------------------------------------------------------- /ShogiBoard/PlayerInfoControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/PlayerInfoControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/PlayerInfoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/PlayerInfoControl.cs -------------------------------------------------------------------------------- /ShogiBoard/PlayerInfoControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/PlayerInfoControl.resx -------------------------------------------------------------------------------- /ShogiBoard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Program.cs -------------------------------------------------------------------------------- /ShogiBoard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShogiBoard/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Properties/Resources.resx -------------------------------------------------------------------------------- /ShogiBoard/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/Properties/Settings.settings -------------------------------------------------------------------------------- /ShogiBoard/ShogiBoard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ShogiBoard.csproj -------------------------------------------------------------------------------- /ShogiBoard/ThinkForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ThinkForm.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/ThinkForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ThinkForm.cs -------------------------------------------------------------------------------- /ShogiBoard/ThinkForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/ThinkForm.resx -------------------------------------------------------------------------------- /ShogiBoard/TimePickerControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/TimePickerControl.Designer.cs -------------------------------------------------------------------------------- /ShogiBoard/TimePickerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/TimePickerControl.cs -------------------------------------------------------------------------------- /ShogiBoard/TimePickerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/TimePickerControl.resx -------------------------------------------------------------------------------- /ShogiBoard/VolatileConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/VolatileConfig.cs -------------------------------------------------------------------------------- /ShogiBoard/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ak110/ShogiBoard/HEAD/ShogiBoard/packages.config --------------------------------------------------------------------------------