Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toyobayashi/mishiro-core
Simple cgss library in Node.js
https://github.com/toyobayashi/mishiro-core
Last synced: 11 days ago
JSON representation
Simple cgss library in Node.js
- Host: GitHub
- URL: https://github.com/toyobayashi/mishiro-core
- Owner: toyobayashi
- License: mit
- Created: 2018-04-05T14:35:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-06T13:25:51.000Z (8 months ago)
- Last Synced: 2024-10-11T20:58:33.502Z (27 days ago)
- Language: JavaScript
- Size: 4.5 MB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# mishiro-core
[![Build](https://github.com/toyobayashi/mishiro-core/workflows/Build/badge.svg)](https://github.com/toyobayashi/mishiro-core/actions?query=workflow%3ABuild)
``` bash
$ npm install mishiro-core
```## Require
* Node.js >= 10.8.0 || electron >= 4.0.0 (Node.js 10.11.0)
* Python 2.7
* [Windows] Visual Studio 2017/2019 with C++ build tools and .NET
* [Linux] make & gcc & g++
* [MacOS] Xcode Command Line Tools## Usage
``` javascript
const { Downloader, Client, audio, util, config } = require('mishiro-core')let downloader = new Downloader() // download game resources
const {
acb2hca,
acb2wav,
acb2mp3,
acb2aac,
hca2wav,
hca2mp3,
hca2aac,
wav2mp3,
wav2aac,
MP3Encoder,
AACEncoder
} = audio // decode musicconst {
Lz4, // LZ4 decompression class
unpackTexture2D // unpack pictures from unity3d assets bundle
} = utilconst client = new Client('123456789:987654321:1a3b5c7d-1234-4bcd-9efa-8e6f4a2b7c5d')
// check game resource version
client.check().then(resVer => console.log(resVer))// for more details, see index.d.ts and test.
```## Test
``` bash
# use latest npm (6.10.2+ with node-gyp 5.x)
# npm 6.9.0 use internal node-gyp whose version is v3
# it's important to match the globally installed node-gyp version
# because the location where node-gyp v5 cache the node header
# is different from node-gyp v3
$ npm install -g npm$ npm install -g node-gyp@9
# install node C++ header
$ node-gyp install # --target=$ npm install # --no-package-lock
# npm run test-check
# npm run test-download
# npm run test-audio
$ npm test
```## License
* MIT