├── .gitignore ├── DF.DataReporting.sln ├── DF.DataReporting ├── Assets │ ├── data │ │ └── items_v2.json │ └── image │ │ ├── back-forsell.png │ │ ├── back.png │ │ ├── back02.png │ │ ├── buy.png │ │ ├── del.png │ │ └── pickup.png ├── DF.DataReporting.csproj ├── DataReportJob.cs ├── DataReportingException.cs ├── Helper │ └── PaddleOcrHelper.cs └── Program.cs ├── DF.Model ├── DF.Model.csproj └── Ocr │ └── GameCaptureConfig.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/.gitignore -------------------------------------------------------------------------------- /DF.DataReporting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting.sln -------------------------------------------------------------------------------- /DF.DataReporting/Assets/data/items_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Assets/data/items_v2.json -------------------------------------------------------------------------------- /DF.DataReporting/Assets/image/back-forsell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Assets/image/back-forsell.png -------------------------------------------------------------------------------- /DF.DataReporting/Assets/image/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Assets/image/back.png -------------------------------------------------------------------------------- /DF.DataReporting/Assets/image/back02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Assets/image/back02.png -------------------------------------------------------------------------------- /DF.DataReporting/Assets/image/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Assets/image/buy.png -------------------------------------------------------------------------------- /DF.DataReporting/Assets/image/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Assets/image/del.png -------------------------------------------------------------------------------- /DF.DataReporting/Assets/image/pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Assets/image/pickup.png -------------------------------------------------------------------------------- /DF.DataReporting/DF.DataReporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/DF.DataReporting.csproj -------------------------------------------------------------------------------- /DF.DataReporting/DataReportJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/DataReportJob.cs -------------------------------------------------------------------------------- /DF.DataReporting/DataReportingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/DataReportingException.cs -------------------------------------------------------------------------------- /DF.DataReporting/Helper/PaddleOcrHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Helper/PaddleOcrHelper.cs -------------------------------------------------------------------------------- /DF.DataReporting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.DataReporting/Program.cs -------------------------------------------------------------------------------- /DF.Model/DF.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.Model/DF.Model.csproj -------------------------------------------------------------------------------- /DF.Model/Ocr/GameCaptureConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/DF.Model/Ocr/GameCaptureConfig.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K12f/DF.DataReporting/HEAD/README.md --------------------------------------------------------------------------------