forked from Hay1tsme/artemis
IDAC: Updated docs, added TA Data
Known issue: after selecting Season 1, the TA Data for Season 2 will not be shown
This commit is contained in:
parent
ee5f13a3bb
commit
0e664e03f9
@ -10,11 +10,11 @@ This step-by-step guide assumes that you are using a fresh install of Windows 10
|
|||||||
3. Make sure that you enable "Create shortcuts for installed applications" and "Add Python to environment variables" and hit Install
|
3. Make sure that you enable "Create shortcuts for installed applications" and "Add Python to environment variables" and hit Install
|
||||||
|
|
||||||
## Install MySQL 8.0
|
## Install MySQL 8.0
|
||||||
1. Download MySQL 8.0 Server : [Link](https://cdn.mysql.com//Downloads/MySQLInstaller/mysql-installer-web-community-8.0.31.0.msi)
|
1. Download MySQL 8.0 Server : [Link](https://dev.mysql.com/get/Downloads/MySQLInstaller/mysql-installer-community-8.0.34.0.msi)
|
||||||
2. Install mysql-installer-web-community-8.0.31.0.msi
|
2. Install mysql-installer-web-community-8.0.34.0.msi
|
||||||
1. Click on "Add ..." on the side
|
1. Click on "Add ..." on the side
|
||||||
2. Click on the "+" next to MySQL Servers
|
2. Click on the "+" next to MySQL Servers
|
||||||
3. Make sure MySQL Server 8.0.29 - X64 is under the products to be installed.
|
3. Make sure MySQL Server 8.0.34 - X64 is under the products to be installed.
|
||||||
4. Hit Next and Next once installed
|
4. Hit Next and Next once installed
|
||||||
5. Select the configuration type "Development Computer"
|
5. Select the configuration type "Development Computer"
|
||||||
6. Hit Next
|
6. Hit Next
|
||||||
@ -23,9 +23,10 @@ This step-by-step guide assumes that you are using a fresh install of Windows 10
|
|||||||
9. Leave everything under Windows Service as default and hit Next >
|
9. Leave everything under Windows Service as default and hit Next >
|
||||||
10. Click on Execute and for it to finish and hit Next> and then Finish
|
10. Click on Execute and for it to finish and hit Next> and then Finish
|
||||||
3. Open MySQL 8.0 Command Line Client and login as your root user
|
3. Open MySQL 8.0 Command Line Client and login as your root user
|
||||||
4. Type those commands to create your user and the database
|
4. Change `<Enter Password Here>` to a new password for the user aime, type those commands to create your user and the database
|
||||||
```
|
|
||||||
CREATE USER 'aime'@'localhost' IDENTIFIED BY 'MyStrongPass.';
|
```sql
|
||||||
|
CREATE USER 'aime'@'localhost' IDENTIFIED BY '<Enter Password Here>';
|
||||||
CREATE DATABASE aime;
|
CREATE DATABASE aime;
|
||||||
GRANT Alter,Create,Delete,Drop,Index,Insert,References,Select,Update ON aime.* TO 'aime'@'localhost';
|
GRANT Alter,Create,Delete,Drop,Index,Insert,References,Select,Update ON aime.* TO 'aime'@'localhost';
|
||||||
FLUSH PRIVILEGES;
|
FLUSH PRIVILEGES;
|
||||||
@ -34,33 +35,50 @@ exit;
|
|||||||
|
|
||||||
## Install Python modules
|
## Install Python modules
|
||||||
1. Change your work path to the artemis-master folder using 'cd' and install the requirements:
|
1. Change your work path to the artemis-master folder using 'cd' and install the requirements:
|
||||||
> pip install -r requirements.txt
|
|
||||||
|
|
||||||
## Copy/Rename the folder example_config to config
|
```shell
|
||||||
|
pip install -r requirements.txt
|
||||||
## Adjust /config/core.yaml
|
|
||||||
|
|
||||||
1. Make sure to change the server listen_address to be set to your local machine IP (ex.: 192.168.1.xxx)
|
|
||||||
- In case you want to run this only locally, set the following values:
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Copy/Rename the folder `example_config` to `config`
|
||||||
|
|
||||||
|
## Adjust `config/core.yaml`
|
||||||
|
|
||||||
|
1. Make sure to change the server `hostname` to be set to your local machine IP (ex.: 192.168.xxx.xxx)
|
||||||
|
- In case you want to run this only locally, set the following values:
|
||||||
|
|
||||||
|
```yaml
|
||||||
server:
|
server:
|
||||||
listen_address: 0.0.0.0
|
listen_address: 0.0.0.0
|
||||||
title:
|
title:
|
||||||
hostname: localhost
|
hostname: 192.168.xxx.xxx
|
||||||
|
```
|
||||||
|
|
||||||
|
1. Adjust the proper MySQL information you created earlier
|
||||||
|
```yaml
|
||||||
|
database:
|
||||||
|
host: "localhost"
|
||||||
|
username: "aime"
|
||||||
|
password: "<Enter Password Here>"
|
||||||
|
name: "aime"
|
||||||
```
|
```
|
||||||
2. Adjust the proper MySQL information you created earlier
|
|
||||||
3. Add the AimeDB key at the bottom of the file
|
3. Add the AimeDB key at the bottom of the file
|
||||||
4. If the webui is needed, change the flag from False to True
|
4. If the webui is needed, change the flag from False to True
|
||||||
|
|
||||||
## Create the database tables for ARTEMiS
|
## Create the database tables for ARTEMiS
|
||||||
> python dbutils.py create
|
|
||||||
|
```shell
|
||||||
|
python dbutils.py create
|
||||||
|
```
|
||||||
|
|
||||||
## Firewall Adjustements
|
## Firewall Adjustements
|
||||||
Make sure the following ports are open both on your router and local Windows firewall in case you want to use this for public use (NOT recommended):
|
Make sure the following ports are open both on your router and local Windows firewall in case you want to use this for public use (NOT recommended):
|
||||||
> Port 80 (TCP), 443 (TCP), 8443 (TCP), 22345 (TCP), 8080 (TCP), 8090 (TCP) **webui, 8444 (TCP) **mucha
|
> Port 80 (TCP), 443 (TCP), 8443 (TCP), 22345 (TCP), 8080 (TCP), 8090 (TCP) **webui, 8444 (TCP) **mucha
|
||||||
|
|
||||||
## Running the ARTEMiS instance
|
## Running the ARTEMiS instance
|
||||||
> python index.py
|
```shell
|
||||||
|
python index.py
|
||||||
|
```
|
||||||
|
|
||||||
# Troubleshooting
|
# Troubleshooting
|
||||||
|
|
||||||
@ -78,6 +96,7 @@ Make sure the following ports are open both on your router and local Windows fir
|
|||||||
## AttributeError: module 'collections' has no attribute 'Hashable'
|
## AttributeError: module 'collections' has no attribute 'Hashable'
|
||||||
1. This means the pyYAML module is obsolete, simply rerun pip with the -U (force update) flag, as shown below.
|
1. This means the pyYAML module is obsolete, simply rerun pip with the -U (force update) flag, as shown below.
|
||||||
- Change your work path to the artemis-master (or artemis-develop) folder using 'cd' and run the following commands:
|
- Change your work path to the artemis-master (or artemis-develop) folder using 'cd' and run the following commands:
|
||||||
```
|
|
||||||
|
```shell
|
||||||
pip install -r requirements.txt -U
|
pip install -r requirements.txt -U
|
||||||
```
|
```
|
||||||
|
@ -571,32 +571,34 @@ python dbutils.py --game SDGT upgrade
|
|||||||
|
|
||||||
### Item categories
|
### Item categories
|
||||||
|
|
||||||
1. D Coin
|
| Category ID | Category Name |
|
||||||
3. Car Dressup Token
|
| ----------- | ------------------------ |
|
||||||
5. Avatar Dressup Token
|
| 1 | D Coin |
|
||||||
6. Tachometer
|
| 3 | Car Dressup Token |
|
||||||
7. Aura
|
| 5 | Avatar Dressup Token |
|
||||||
8. Aura Color
|
| 6 | Tachometer |
|
||||||
9. Avatar Face
|
| 7 | Aura |
|
||||||
10. Avatar Eye
|
| 8 | Aura Color |
|
||||||
11. Avatar Mouth
|
| 9 | Avatar Face |
|
||||||
12. Avatar Hair
|
| 10 | Avatar Eye |
|
||||||
13. Avatar Glasses
|
| 11 | Avatar Mouth |
|
||||||
14. Avatar Face accessories
|
| 12 | Avatar Hair |
|
||||||
15. Avatar Body
|
| 13 | Avatar Glasses |
|
||||||
18. Avatar Background
|
| 14 | Avatar Face accessories |
|
||||||
21. Chat Stamp
|
| 15 | Avatar Body |
|
||||||
22. Keychain
|
| 18 | Avatar Background |
|
||||||
24. Title
|
| 21 | Chat Stamp |
|
||||||
25. Full Tune Ticket
|
| 22 | Keychain |
|
||||||
26. Paper Cup
|
| 24 | Title |
|
||||||
27. BGM
|
| 25 | FullTune Ticket |
|
||||||
28. Drifting Text
|
| 26 | Paper Cup |
|
||||||
31. Start Menu BG
|
| 27 | BGM |
|
||||||
32. Car Color/Paint
|
| 28 | Drifting Text |
|
||||||
33. Aura Level?
|
| 31 | Start Menu BG |
|
||||||
34. Full Tune Ticket Fragment
|
| 32 | Car Color/Paint |
|
||||||
35. Underneon Lights
|
| 33 | Aura Level |
|
||||||
|
| 34 | FullTune Ticket Fragment |
|
||||||
|
| 35 | Underneon Lights |
|
||||||
|
|
||||||
### TimeRelease Chapter:
|
### TimeRelease Chapter:
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
server:
|
server:
|
||||||
enabled: True
|
enabled: True
|
||||||
loglevel: "debug"
|
loglevel: "info"
|
||||||
ssl: False
|
ssl: False
|
||||||
ssl_key: "cert/idac.key"
|
ssl_key: "cert/idac.key"
|
||||||
ssl_cert: "cert/idac.crt"
|
ssl_cert: "cert/idac.crt"
|
||||||
|
@ -92,14 +92,14 @@ class IDACSeason2(IDACBase):
|
|||||||
21 = Chat Stamp
|
21 = Chat Stamp
|
||||||
22 = Keychain
|
22 = Keychain
|
||||||
24 = Title
|
24 = Title
|
||||||
25 = Full Tune Ticket
|
25 = FullTune Ticket
|
||||||
26 = Paper Cup
|
26 = Paper Cup
|
||||||
27 = BGM
|
27 = BGM
|
||||||
28 = Drifting Text
|
28 = Drifting Text
|
||||||
31 = Start Menu BG
|
31 = Start Menu BG
|
||||||
32 = Car Color/Paint
|
32 = Car Color/Paint
|
||||||
33 = Aura Level?
|
33 = Aura Level
|
||||||
34 = Full Tune Ticket Fragment
|
34 = FullTune Ticket Fragment
|
||||||
35 = Underneon Lights
|
35 = Underneon Lights
|
||||||
"""
|
"""
|
||||||
version = headers["device_version"]
|
version = headers["device_version"]
|
||||||
@ -146,9 +146,9 @@ class IDACSeason2(IDACBase):
|
|||||||
"round_event_exp": [],
|
"round_event_exp": [],
|
||||||
"stamp_info": self.stamp_info,
|
"stamp_info": self.stamp_info,
|
||||||
# 0 = use default data, 1+ = server version of timereleasedata response
|
# 0 = use default data, 1+ = server version of timereleasedata response
|
||||||
"timerelease_no": 5,
|
"timerelease_no": 1,
|
||||||
# 0 = use default data, 1+ = server version of gachadata response
|
# 0 = use default data, 1+ = server version of gachadata response
|
||||||
"timerelease_avatar_gacha_no": 5,
|
"timerelease_avatar_gacha_no": 1,
|
||||||
"takeover_reward": [],
|
"takeover_reward": [],
|
||||||
"subcard_judge": [
|
"subcard_judge": [
|
||||||
{
|
{
|
||||||
@ -316,7 +316,7 @@ class IDACSeason2(IDACBase):
|
|||||||
# get the country id from the profile, 9 is JPN
|
# get the country id from the profile, 9 is JPN
|
||||||
"country": 9,
|
"country": 9,
|
||||||
"style_car_id": rank["style_car_id"],
|
"style_car_id": rank["style_car_id"],
|
||||||
# convert the dateimt to a timestamp
|
# convert the datetime to a timestamp
|
||||||
"play_dt": int(rank["play_dt"].timestamp()),
|
"play_dt": int(rank["play_dt"].timestamp()),
|
||||||
"section_time_1": rank["section_time_1"],
|
"section_time_1": rank["section_time_1"],
|
||||||
"section_time_2": rank["section_time_2"],
|
"section_time_2": rank["section_time_2"],
|
||||||
@ -341,7 +341,6 @@ class IDACSeason2(IDACBase):
|
|||||||
}
|
}
|
||||||
|
|
||||||
def handle_login_checklock_request(self, data: Dict, headers: Dict):
|
def handle_login_checklock_request(self, data: Dict, headers: Dict):
|
||||||
access_code = data["accesscode"]
|
|
||||||
user_id = data["id"]
|
user_id = data["id"]
|
||||||
|
|
||||||
# check if an IDAC profile already exists
|
# check if an IDAC profile already exists
|
||||||
@ -1576,6 +1575,71 @@ class IDACSeason2(IDACBase):
|
|||||||
"maker_use_count": [],
|
"maker_use_count": [],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def _generate_time_trial_data(self, season_id: int, user_id: int) -> List[Dict]:
|
||||||
|
# get the season time trial data from database
|
||||||
|
timetrial_data = []
|
||||||
|
|
||||||
|
courses = self.data.item.get_courses(user_id)
|
||||||
|
if courses is None or len(courses) == 0:
|
||||||
|
return {"status_code": "0", "timetrial_data": timetrial_data}
|
||||||
|
|
||||||
|
for course in courses:
|
||||||
|
# grab the course id and course proeficiency
|
||||||
|
course_id = course["course_id"]
|
||||||
|
skill_level_exp = course["skill_level_exp"]
|
||||||
|
|
||||||
|
# get the best time for the current course for the current user
|
||||||
|
best_trial = self.data.item.get_time_trial_best_ranking_by_course(season_id, user_id, course_id)
|
||||||
|
if not best_trial:
|
||||||
|
continue
|
||||||
|
|
||||||
|
goal_time = best_trial["goal_time"]
|
||||||
|
# get the rank for the current course
|
||||||
|
course_rank = self.data.item.get_time_trial_ranking_by_course(
|
||||||
|
season_id, course_id, limit=None
|
||||||
|
)
|
||||||
|
course_rank = len([r for r in course_rank if r["goal_time"] < goal_time]) + 1
|
||||||
|
|
||||||
|
timetrial_data.append(
|
||||||
|
{
|
||||||
|
"style_car_id": best_trial["style_car_id"],
|
||||||
|
"course_id": course_id,
|
||||||
|
"skill_level_exp": skill_level_exp,
|
||||||
|
"goal_time": goal_time,
|
||||||
|
"rank": course_rank,
|
||||||
|
"rank_dt": int(best_trial["play_dt"].timestamp()),
|
||||||
|
})
|
||||||
|
|
||||||
|
return timetrial_data
|
||||||
|
|
||||||
|
def handle_user_getpastseasontadata_request(self, data: Dict, headers: Dict):
|
||||||
|
user_id = headers["session"]
|
||||||
|
season_id = data.get("season_id")
|
||||||
|
|
||||||
|
# so to get the season 1 data just subtract 1 from the season id
|
||||||
|
past_timetrial_data = self._generate_time_trial_data(season_id - 1, user_id)
|
||||||
|
|
||||||
|
# TODO: get the current season timetrial data somehow, because after requesting
|
||||||
|
# GetPastSeasonTAData the game will NOT request GetTAData?!
|
||||||
|
return {
|
||||||
|
"status_code": "0",
|
||||||
|
"season_id": season_id,
|
||||||
|
"past_season_timetrial_data": past_timetrial_data,
|
||||||
|
}
|
||||||
|
|
||||||
|
def handle_user_gettadata_request(self, data: Dict, headers: Dict):
|
||||||
|
user_id = headers["session"]
|
||||||
|
|
||||||
|
timetrial_data = self._generate_time_trial_data(self.version, user_id)
|
||||||
|
|
||||||
|
# TODO: get the past season timetrial data somehow, because after requesting
|
||||||
|
# GetTAData the game will NOT request GetPastSeasonTAData?!
|
||||||
|
return {
|
||||||
|
"status_code": "0",
|
||||||
|
"timetrial_data": timetrial_data,
|
||||||
|
# "past_season_timetrial_data": timetrial_data,
|
||||||
|
}
|
||||||
|
|
||||||
def handle_user_updatecartune_request(self, data: Dict, headers: Dict):
|
def handle_user_updatecartune_request(self, data: Dict, headers: Dict):
|
||||||
user_id = headers["session"]
|
user_id = headers["session"]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user