sonolus-bandori-engine 0.6.6 → 0.6.7-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/EngineConfiguration +0 -0
- package/dist/EngineData +0 -0
- package/dist/convert.js +2 -2
- package/dist/index.d.ts +6 -6
- package/dist/index.js +6 -6
- package/package.json +3 -3
package/dist/EngineConfiguration
CHANGED
|
Binary file
|
package/dist/EngineData
CHANGED
|
Binary file
|
package/dist/convert.js
CHANGED
|
@@ -82,7 +82,7 @@ function fromBestdori(chart, archetypes) {
|
|
|
82
82
|
case 'Long': {
|
|
83
83
|
let segments = [];
|
|
84
84
|
const hasHidden = chartObject.connections.some((connection) => connection.hidden);
|
|
85
|
-
const
|
|
85
|
+
const isLong = chartObject.connections.length === 2 &&
|
|
86
86
|
chartObject.connections[0].lane ===
|
|
87
87
|
chartObject.connections[1].lane
|
|
88
88
|
? 1
|
|
@@ -126,7 +126,7 @@ function fromBestdori(chart, archetypes) {
|
|
|
126
126
|
lane,
|
|
127
127
|
0,
|
|
128
128
|
0,
|
|
129
|
-
|
|
129
|
+
isLong,
|
|
130
130
|
],
|
|
131
131
|
},
|
|
132
132
|
},
|
package/dist/index.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import { LevelData } from 'sonolus-core';
|
|
2
2
|
import { ChartObject } from './convert';
|
|
3
3
|
import { Resource } from './Resource';
|
|
4
|
-
export declare const version = "0.6.
|
|
4
|
+
export declare const version = "0.6.7-beta.0";
|
|
5
5
|
export declare const engineInfo: {
|
|
6
6
|
readonly name: "bandori";
|
|
7
|
-
readonly version:
|
|
7
|
+
readonly version: 6;
|
|
8
8
|
readonly title: {
|
|
9
9
|
readonly en: "BanG Dream!";
|
|
10
10
|
readonly ja: "バンドリ!";
|
|
11
11
|
readonly ko: "뱅드림!";
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
12
|
+
readonly zhs: "BanG Dream!";
|
|
13
|
+
readonly zht: "BanG Dream!";
|
|
14
14
|
};
|
|
15
15
|
readonly subtitle: {
|
|
16
16
|
readonly en: "BanG Dream! Girls Band Party!";
|
|
17
17
|
readonly ja: "バンドリ! ガールズバンドパーティ!";
|
|
18
18
|
readonly ko: "뱅드림! 걸즈 밴드 파티!";
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
19
|
+
readonly zhs: "BanG Dream! 少女乐团派对!";
|
|
20
|
+
readonly zht: "BanG Dream! 少女樂團派對";
|
|
21
21
|
};
|
|
22
22
|
readonly author: {
|
|
23
23
|
readonly en: "Burrito";
|
package/dist/index.js
CHANGED
|
@@ -5,23 +5,23 @@ const convert_1 = require("./convert");
|
|
|
5
5
|
const Resource_1 = require("./Resource");
|
|
6
6
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
7
7
|
const archetypes = require('./archetypes');
|
|
8
|
-
exports.version = '0.6.
|
|
8
|
+
exports.version = '0.6.7-beta.0';
|
|
9
9
|
exports.engineInfo = {
|
|
10
10
|
name: 'bandori',
|
|
11
|
-
version:
|
|
11
|
+
version: 6,
|
|
12
12
|
title: {
|
|
13
13
|
en: 'BanG Dream!',
|
|
14
14
|
ja: 'バンドリ!',
|
|
15
15
|
ko: '뱅드림!',
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
zhs: 'BanG Dream!',
|
|
17
|
+
zht: 'BanG Dream!',
|
|
18
18
|
},
|
|
19
19
|
subtitle: {
|
|
20
20
|
en: 'BanG Dream! Girls Band Party!',
|
|
21
21
|
ja: 'バンドリ! ガールズバンドパーティ!',
|
|
22
22
|
ko: '뱅드림! 걸즈 밴드 파티!',
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
zhs: 'BanG Dream! 少女乐团派对!',
|
|
24
|
+
zht: 'BanG Dream! 少女樂團派對',
|
|
25
25
|
},
|
|
26
26
|
author: {
|
|
27
27
|
en: 'Burrito',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sonolus-bandori-engine",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.7-beta.0",
|
|
4
4
|
"description": "A recreation of BanG Dream! Girls Band Party engine in Sonolus",
|
|
5
5
|
"author": "NonSpicyBurrito",
|
|
6
6
|
"repository": "github:NonSpicyBurrito/sonolus-bandori-engine",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"eslint-plugin-prettier": "^4.0.0",
|
|
27
27
|
"fs-extra": "^10.1.0",
|
|
28
28
|
"prettier": "^2.6.2",
|
|
29
|
-
"sonolus-core": "^
|
|
30
|
-
"sonolus.js": "^5.2.
|
|
29
|
+
"sonolus-core": "^2.0.0-beta.1",
|
|
30
|
+
"sonolus.js": "^5.2.3-beta.0",
|
|
31
31
|
"ts-node": "^10.7.0",
|
|
32
32
|
"ts-node-dev": "^1.1.8",
|
|
33
33
|
"typescript": "^4.6.3"
|