├── .gitattributes ├── .gitignore ├── AndrealImageGenerator.csproj ├── AndrealImageGenerator.sln ├── AndrealImageGenerator.sln.DotSettings.user ├── Beans ├── ArcaeaChart.cs ├── ArcaeaCharts.cs ├── ArcaeaSong.cs ├── Best30Data.cs ├── Best40Data.cs ├── DifficultyInfo.cs ├── ImgVersion.cs ├── Json │ ├── AccountInfo.cs │ ├── ArcSongdata.cs │ ├── ResponseRoot.cs │ ├── SongListContent.cs │ ├── UserBestContent.cs │ ├── UserBestsContent.cs │ └── UserInfoContent.cs ├── PlayerInfo.cs ├── RecordInfo.cs └── Side.cs ├── Common ├── ArcaeaUnlimitedAPI.cs ├── ExceptionLogger.cs ├── PartnerLocator.cs └── Path.cs ├── Graphics ├── BackGround.cs ├── Color.cs ├── Components │ ├── IGraphicsComponent.cs │ ├── ImageComponent.cs │ ├── LineComponent.cs │ ├── PartnerComponent.cs │ ├── PolygonComponent.cs │ ├── PotentitalComponent.cs │ ├── RectangleComponent.cs │ ├── ShadowTextComponent.cs │ ├── StrokeTextComponent.cs │ └── TextComponent.cs ├── Font.cs ├── Generators │ ├── BackgroundGenerator.cs │ ├── Best30Generator.cs │ ├── Best40Generator.cs │ ├── IGraphicGenerator.cs │ └── RecordGenerator.cs ├── Image.cs └── StackBlur.cs ├── ImageAPI.cs ├── LICENSE ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /AndrealImageGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/AndrealImageGenerator.csproj -------------------------------------------------------------------------------- /AndrealImageGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/AndrealImageGenerator.sln -------------------------------------------------------------------------------- /AndrealImageGenerator.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/AndrealImageGenerator.sln.DotSettings.user -------------------------------------------------------------------------------- /Beans/ArcaeaChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/ArcaeaChart.cs -------------------------------------------------------------------------------- /Beans/ArcaeaCharts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/ArcaeaCharts.cs -------------------------------------------------------------------------------- /Beans/ArcaeaSong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/ArcaeaSong.cs -------------------------------------------------------------------------------- /Beans/Best30Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Best30Data.cs -------------------------------------------------------------------------------- /Beans/Best40Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Best40Data.cs -------------------------------------------------------------------------------- /Beans/DifficultyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/DifficultyInfo.cs -------------------------------------------------------------------------------- /Beans/ImgVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/ImgVersion.cs -------------------------------------------------------------------------------- /Beans/Json/AccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Json/AccountInfo.cs -------------------------------------------------------------------------------- /Beans/Json/ArcSongdata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Json/ArcSongdata.cs -------------------------------------------------------------------------------- /Beans/Json/ResponseRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Json/ResponseRoot.cs -------------------------------------------------------------------------------- /Beans/Json/SongListContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Json/SongListContent.cs -------------------------------------------------------------------------------- /Beans/Json/UserBestContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Json/UserBestContent.cs -------------------------------------------------------------------------------- /Beans/Json/UserBestsContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Json/UserBestsContent.cs -------------------------------------------------------------------------------- /Beans/Json/UserInfoContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Json/UserInfoContent.cs -------------------------------------------------------------------------------- /Beans/PlayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/PlayerInfo.cs -------------------------------------------------------------------------------- /Beans/RecordInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/RecordInfo.cs -------------------------------------------------------------------------------- /Beans/Side.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Beans/Side.cs -------------------------------------------------------------------------------- /Common/ArcaeaUnlimitedAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Common/ArcaeaUnlimitedAPI.cs -------------------------------------------------------------------------------- /Common/ExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Common/ExceptionLogger.cs -------------------------------------------------------------------------------- /Common/PartnerLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Common/PartnerLocator.cs -------------------------------------------------------------------------------- /Common/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Common/Path.cs -------------------------------------------------------------------------------- /Graphics/BackGround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/BackGround.cs -------------------------------------------------------------------------------- /Graphics/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Color.cs -------------------------------------------------------------------------------- /Graphics/Components/IGraphicsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/IGraphicsComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/ImageComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/ImageComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/LineComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/LineComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/PartnerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/PartnerComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/PolygonComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/PolygonComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/PotentitalComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/PotentitalComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/RectangleComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/RectangleComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/ShadowTextComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/ShadowTextComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/StrokeTextComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/StrokeTextComponent.cs -------------------------------------------------------------------------------- /Graphics/Components/TextComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Components/TextComponent.cs -------------------------------------------------------------------------------- /Graphics/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Font.cs -------------------------------------------------------------------------------- /Graphics/Generators/BackgroundGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Generators/BackgroundGenerator.cs -------------------------------------------------------------------------------- /Graphics/Generators/Best30Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Generators/Best30Generator.cs -------------------------------------------------------------------------------- /Graphics/Generators/Best40Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Generators/Best40Generator.cs -------------------------------------------------------------------------------- /Graphics/Generators/IGraphicGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Generators/IGraphicGenerator.cs -------------------------------------------------------------------------------- /Graphics/Generators/RecordGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Generators/RecordGenerator.cs -------------------------------------------------------------------------------- /Graphics/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/Image.cs -------------------------------------------------------------------------------- /Graphics/StackBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Graphics/StackBlur.cs -------------------------------------------------------------------------------- /ImageAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/ImageAPI.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/README.md -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awbugl/AndrealImageGenerator/HEAD/appsettings.json --------------------------------------------------------------------------------