@rel-packages/osu-beatmap-parser 0.1.8 → 1.0.3
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/README.md +6 -1
- package/build/osu-beatmap-parser.js +5826 -0
- package/build/osu-beatmap-parser.wasm +0 -0
- package/dist/index.d.ts +2 -9
- package/dist/index.js +11 -40
- package/dist/lib/bindings.d.ts +1 -0
- package/dist/lib/bindings.js +92 -0
- package/dist/types.d.ts +3 -6
- package/package.json +28 -10
- package/prebuilds/linux-x64/linux-x64/osu-beatmap-parser.node +0 -0
- package/prebuilds/win32-x64/win32-x64/osu-beatmap-parser.node +0 -0
- package/.prebuildrc +0 -6
- package/CMakeLists.txt +0 -68
- package/prebuilds/linux-x64/osu-beatmap-parser.node +0 -0
- package/prebuilds/win32-x64/osu-beatmap-parser.node +0 -0
- package/src/native/addon.cpp +0 -265
- package/src/native/addon.hpp +0 -26
- package/src/native/definitions.hpp +0 -56
- package/src/native/osu/audio.cpp +0 -30
- package/src/native/osu/audio.hpp +0 -34
- package/src/native/osu/parser.cpp +0 -294
- package/src/native/osu/parser.hpp +0 -14
- package/src/native/pool.hpp +0 -80
- package/src/types.ts +0 -48
package/README.md
CHANGED
|
@@ -13,4 +13,9 @@ npm install osu-beatmap-parser
|
|
|
13
13
|
```bash
|
|
14
14
|
npm install
|
|
15
15
|
npm run compile
|
|
16
|
-
```
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## TODO
|
|
19
|
+
- [ ] native: handle "Storyboard" key
|
|
20
|
+
- [ ] native: handle beatmap file version
|
|
21
|
+
- [ ] native: handle lazer files (like, if we're trying to get AudioLocation from a lazer file, we will need to follow the hashed lazer path)
|