├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── README.md ├── image ├── automaton.png ├── weathertyping.png └── wteditor.png ├── license └── project ├── Plugins ├── WeatherTypingPlugin │ ├── IPlugin.cs │ ├── IPluginInfo.cs │ ├── WeatherTypingPlugin.csproj │ ├── WeatherTypingPlugin.dll │ ├── helper │ │ ├── BitFlag.cs │ │ ├── JapaneseHelper.cs │ │ ├── KeyCodeHelper.cs │ │ └── VersionHelper.cs │ └── input │ │ ├── IInputCustom.cs │ │ ├── IInputFilter.cs │ │ ├── IInputKeyboard.cs │ │ ├── IKeyCustom.cs │ │ ├── IKeyFilter.cs │ │ ├── InputAutomaton.cs │ │ ├── KeyStroke.cs │ │ └── WTKeyCode.cs ├── WeatherTypingPluginDenasu │ ├── InputCustomDefaultV1.cs │ ├── InputCustomRomanV1.cs │ ├── InputFilterDefaultV1.cs │ ├── InputFilterKanaV1.cs │ ├── InputFilterRomanV1.cs │ ├── InputFilterRomanV2.cs │ ├── InputFilterSoftwareKeyboardV1.cs │ ├── KeyCustomDefaultV1.cs │ ├── KeyCustomNICOLAV1.cs │ ├── KeyFilterDefaultV1.cs │ ├── KeyFilterNICOLAV1.cs │ ├── KeyFilterSoftwareKeyboardV1.cs │ ├── PluginInfo.cs │ └── WeatherTypingPluginDenasu.csproj └── WeatherTypingPluginSample │ ├── InputCustomSampleV1.cs │ ├── InputFilterSampleV1.cs │ ├── KeyCustomSampleV1.cs │ ├── KeyFilterSampleV1.cs │ ├── PluginInfo.cs │ └── WeatherTypingPluginSample.csproj └── WeatherTyping.sln /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/README.md -------------------------------------------------------------------------------- /image/automaton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/image/automaton.png -------------------------------------------------------------------------------- /image/weathertyping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/image/weathertyping.png -------------------------------------------------------------------------------- /image/wteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/image/wteditor.png -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/license -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/IPlugin.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/IPluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/IPluginInfo.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/WeatherTypingPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/WeatherTypingPlugin.csproj -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/WeatherTypingPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/WeatherTypingPlugin.dll -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/helper/BitFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/helper/BitFlag.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/helper/JapaneseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/helper/JapaneseHelper.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/helper/KeyCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/helper/KeyCodeHelper.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/helper/VersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/helper/VersionHelper.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/IInputCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/IInputCustom.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/IInputFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/IInputFilter.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/IInputKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/IInputKeyboard.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/IKeyCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/IKeyCustom.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/IKeyFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/IKeyFilter.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/InputAutomaton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/InputAutomaton.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/KeyStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/KeyStroke.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPlugin/input/WTKeyCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPlugin/input/WTKeyCode.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/InputCustomDefaultV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/InputCustomDefaultV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/InputCustomRomanV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/InputCustomRomanV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/InputFilterDefaultV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/InputFilterDefaultV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/InputFilterKanaV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/InputFilterKanaV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/InputFilterRomanV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/InputFilterRomanV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/InputFilterRomanV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/InputFilterRomanV2.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/InputFilterSoftwareKeyboardV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/InputFilterSoftwareKeyboardV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/KeyCustomDefaultV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/KeyCustomDefaultV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/KeyCustomNICOLAV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/KeyCustomNICOLAV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/KeyFilterDefaultV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/KeyFilterDefaultV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/KeyFilterNICOLAV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/KeyFilterNICOLAV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/KeyFilterSoftwareKeyboardV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/KeyFilterSoftwareKeyboardV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/PluginInfo.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginDenasu/WeatherTypingPluginDenasu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginDenasu/WeatherTypingPluginDenasu.csproj -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginSample/InputCustomSampleV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginSample/InputCustomSampleV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginSample/InputFilterSampleV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginSample/InputFilterSampleV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginSample/KeyCustomSampleV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginSample/KeyCustomSampleV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginSample/KeyFilterSampleV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginSample/KeyFilterSampleV1.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginSample/PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginSample/PluginInfo.cs -------------------------------------------------------------------------------- /project/Plugins/WeatherTypingPluginSample/WeatherTypingPluginSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/Plugins/WeatherTypingPluginSample/WeatherTypingPluginSample.csproj -------------------------------------------------------------------------------- /project/WeatherTyping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortarco/WeatherTyping/HEAD/project/WeatherTyping.sln --------------------------------------------------------------------------------