├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── backends ├── __init__.py ├── ppsspp.py └── psp │ ├── __init__.py │ ├── lxzs1.py │ └── lxzs2.py ├── fanyi.html ├── frontend_overlay ├── frontend_overlay.sln └── frontend_overlay │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SimpleHTTPServer.cs │ ├── Util.cs │ └── frontend_overlay.csproj ├── frontends_bin └── frontend_overlay.exe ├── media └── screenshot_lxzs2.PNG ├── server.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/_config.yml -------------------------------------------------------------------------------- /backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backends/ppsspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/backends/ppsspp.py -------------------------------------------------------------------------------- /backends/psp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backends/psp/lxzs1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/backends/psp/lxzs1.py -------------------------------------------------------------------------------- /backends/psp/lxzs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/backends/psp/lxzs2.py -------------------------------------------------------------------------------- /fanyi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/fanyi.html -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay.sln -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/App.config -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/App.xaml -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/App.xaml.cs -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/MainWindow.xaml -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/MainWindow.xaml.cs -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/Properties/Resources.resx -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/Properties/Settings.settings -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/SimpleHTTPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/SimpleHTTPServer.cs -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/Util.cs -------------------------------------------------------------------------------- /frontend_overlay/frontend_overlay/frontend_overlay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontend_overlay/frontend_overlay/frontend_overlay.csproj -------------------------------------------------------------------------------- /frontends_bin/frontend_overlay.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/frontends_bin/frontend_overlay.exe -------------------------------------------------------------------------------- /media/screenshot_lxzs2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/media/screenshot_lxzs2.PNG -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/server.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/buyonghenmafanhenleijiunengfanyiyouxi/HEAD/util.py --------------------------------------------------------------------------------