forked from endernon/JadeSR-origin-DONOTUSE
Compare commits
2 commits
b98a3e230c
...
b836c52148
Author | SHA1 | Date | |
---|---|---|---|
b836c52148 | |||
bb7f78b67a |
10 changed files with 74 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,4 +2,4 @@ target/
|
|||
Cargo.lock
|
||||
proto/StarRail.proto
|
||||
proto/nameTranslation.txt
|
||||
/*.json
|
||||
./.idea
|
5
.idea/.gitignore
vendored
Normal file
5
.idea/.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
16
.idea/JadeSR-fork.iml
Normal file
16
.idea/JadeSR-fork.iml
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="EMPTY_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/common/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/dispatch/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gameserver/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/proto/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/sdkserver/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/xtask/src" isTestSource="false" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/JadeSR-fork.iml" filepath="$PROJECT_DIR$/.idea/JadeSR-fork.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
Normal file
6
.idea/vcs.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
|
@ -1,6 +1,6 @@
|
|||
# JadeSR
|
||||
|
||||
A Server emulator for the game [`Honkai: Star Rail`](https://hsr.hoyoverse.com/en-us/)
|
||||
A Server emulator for the game [`Honkai: Star Rail`](https://hsr.hoyoverse.com/en-us/) but it's
|
||||
![screenshot](https://git.xeondev.com/reversedrooms/JadeSR/raw/branch/master/screenshot.png)
|
||||
|
||||
## Installation
|
||||
|
|
1
RUNPS.bat
Normal file
1
RUNPS.bat
Normal file
|
@ -0,0 +1 @@
|
|||
cargo xtask run
|
22
dispatch.json
Normal file
22
dispatch.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"http_port": 21041,
|
||||
"game_servers": {
|
||||
"jade_sr": {
|
||||
"name": "JadeSR",
|
||||
"title": "JadeSR",
|
||||
"dispatch_url": "http://127.0.0.1:21041/query_gateway/jade_sr",
|
||||
"env_type": "2",
|
||||
"gateserver_ip": "127.0.0.1",
|
||||
"gateserver_port": 23301,
|
||||
"gateserver_protocol": "Tcp"
|
||||
}
|
||||
},
|
||||
"versions": {
|
||||
"OSBETAWin2.2.51": {
|
||||
"asset_bundle_url": "https://autopatchos.starrails.com/asb/BetaLive/output_7037158_b67f5a6a68fb",
|
||||
"ex_resource_url": "https://autopatchos.starrails.com/design_data/BetaLive/output_7033392_aaca9c1b456b",
|
||||
"lua_url": "https://autopatchos.starrails.com/lua/BetaLive/output_7050564_f05a0f949b10",
|
||||
"lua_version": "7050564"
|
||||
}
|
||||
}
|
||||
}
|
10
globals.json
Normal file
10
globals.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"lineup": [1314],
|
||||
"hero_gender": "GenderWoman",
|
||||
"hero_basic_type": "GirlShaman",
|
||||
"monster_wave_list":
|
||||
[
|
||||
[3013010, 3013010],
|
||||
[3024020]
|
||||
]
|
||||
}
|
4
sdkserver.json
Normal file
4
sdkserver.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"http_port": 21000,
|
||||
"dispatch_endpoint": "http://127.0.0.1:21041"
|
||||
}
|
Loading…
Reference in a new issue