├── .gitignore ├── AimAnalyzer.spec ├── LICENSE ├── MainWindow.py ├── README.md ├── ResultWindow.py ├── assets ├── icon.ico └── icon.png ├── core ├── ReplayFrame.py ├── analyze.py ├── beatmaphashlib.py ├── hitCalculator.py ├── hitobjects.py ├── osuparse │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── beatmapparser.py │ ├── curve.py │ ├── setup.cfg │ ├── setup.py │ ├── slidercalc.py │ └── test_random_map.py └── utilFunctions.py ├── customWidgets.py ├── images ├── ascension.png ├── kaede.png ├── settings_1.png ├── settings_2.png ├── use_1.png ├── use_2.png ├── use_3.png ├── use_4.png ├── use_5.png ├── use_6.png └── use_7.png ├── main.py ├── mainwindow.ui ├── requirements.txt ├── resultwindow.ui ├── settings.json └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /AimAnalyzer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/AimAnalyzer.spec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/MainWindow.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /ResultWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/ResultWindow.py -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/assets/icon.png -------------------------------------------------------------------------------- /core/ReplayFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/ReplayFrame.py -------------------------------------------------------------------------------- /core/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/analyze.py -------------------------------------------------------------------------------- /core/beatmaphashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/beatmaphashlib.py -------------------------------------------------------------------------------- /core/hitCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/hitCalculator.py -------------------------------------------------------------------------------- /core/hitobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/hitobjects.py -------------------------------------------------------------------------------- /core/osuparse/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/.gitignore -------------------------------------------------------------------------------- /core/osuparse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/README.md -------------------------------------------------------------------------------- /core/osuparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/__init__.py -------------------------------------------------------------------------------- /core/osuparse/beatmapparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/beatmapparser.py -------------------------------------------------------------------------------- /core/osuparse/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/curve.py -------------------------------------------------------------------------------- /core/osuparse/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /core/osuparse/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/setup.py -------------------------------------------------------------------------------- /core/osuparse/slidercalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/slidercalc.py -------------------------------------------------------------------------------- /core/osuparse/test_random_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/osuparse/test_random_map.py -------------------------------------------------------------------------------- /core/utilFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/core/utilFunctions.py -------------------------------------------------------------------------------- /customWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/customWidgets.py -------------------------------------------------------------------------------- /images/ascension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/ascension.png -------------------------------------------------------------------------------- /images/kaede.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/kaede.png -------------------------------------------------------------------------------- /images/settings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/settings_1.png -------------------------------------------------------------------------------- /images/settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/settings_2.png -------------------------------------------------------------------------------- /images/use_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/use_1.png -------------------------------------------------------------------------------- /images/use_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/use_2.png -------------------------------------------------------------------------------- /images/use_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/use_3.png -------------------------------------------------------------------------------- /images/use_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/use_4.png -------------------------------------------------------------------------------- /images/use_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/use_5.png -------------------------------------------------------------------------------- /images/use_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/use_6.png -------------------------------------------------------------------------------- /images/use_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/images/use_7.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/main.py -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/requirements.txt -------------------------------------------------------------------------------- /resultwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/resultwindow.ui -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgbeing/osu-aim-analyzer/HEAD/settings.json -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | VERSION = "1.2.2" 2 | --------------------------------------------------------------------------------