const path = require('path') const { walkWzFileAsync, WzMapleVersion, WzObjectType, WzBinaryProperty, ErrorLogger } = require('@tybys/wz') /** * @param {string} wzFilePath - WZ file path * @param {WzMapleVersion} mapleVersion - MapleStory version * @param {string} dir - Output directory path */ async function saveSounds (wzFilePath, mapleVersion, dir) { let n = 0 // let _doNotUseMe /** * @template {import('@tybys/wz').WzObject} T * @param {T} obj - wz object * @returns {Promise<boolean | undefined>} */ async function callback (obj) { // obj is available only in this scope // _doNotUseMe = obj // ! do not do this if (obj.objectType === WzObjectType.Property && obj instanceof WzBinaryProperty) { const relativePath = path.win32.relative(wzFilePath, obj.fullPath).replace(/\\/g, '/') const file = path.join(dir, path.extname(relativePath) === '' ? `${relativePath}.mp3` : relativePath) console.log(`Saving ${path.resolve(file)}`) await obj.saveToFile(file) n++ } return false // continue walking } await walkWzFileAsync(wzFilePath, mapleVersion, callback) console.log(`Total files: ${n}`) if (ErrorLogger.errorsPresent()) { ErrorLogger.saveToFile('WzError.log') } } saveSounds('C:\\Nexon\\MapleStory\\1333.wz', WzMapleVersion.BMS, '1333')是什么意思
时间: 2024-03-11 10:44:08 浏览: 210
node.js中path路径模块的使用方法实例分析
这是一段使用@tybys/wz库的Node.js代码,用于提取MapleStory游戏的声音文件(.mp3格式)并保存到指定目录中。函数接受三个参数:wzFilePath表示WZ文件的路径,mapleVersion表示MapleStory的版本,dir表示输出目录的路径。函数先使用walkWzFileAsync遍历WZ文件,找到所有的声音文件,并将它们保存到指定目录中。函数还会打印出保存的文件数量以及是否有错误发生。
阅读全文