2020-12-27 23:26:13 +08:00
2020-12-22 23:50:30 +08:00
2020-12-27 21:35:21 +08:00
2020-12-23 20:04:05 +08:00
2020-10-02 09:52:35 +08:00
2020-12-22 20:05:21 +08:00
2020-12-23 20:04:37 +08:00
2020-10-04 12:24:43 +08:00
2020-12-27 23:26:13 +08:00
2020-12-27 21:35:21 +08:00
2020-12-22 23:50:30 +08:00

关于脚本倒卖的问题: #1

耻辱柱

Gitee 用户嗨游圈(@vipssp)未经乐谱上传者的同意下私自盗用 SkyAutoplayerScript 于 Gitee 的同步镜像到它的 Gitee 仓库

在经过通知后仍未及时删除盗用的乐谱,在于一些乐谱原作者沟通后,决定将其挂在此 README.md 首部,以告示。

SkyAutoPlayerScript

使用Auto.js提供的无障碍权限实现在Sky光遇中自动弹奏SkyStudio导出的曲谱

A script to play Sheets generated by SkyStudio automatically in game Sky with accessibility services using Auto.js

特性 / Feature

相比于其他脚本SkyAutoPlayerScript拥有以下优势

There are many features in SkyAutoPlayerScript compared to other auto player scripts.

  • 全GUI操作无需编辑任何代码流畅的UI动画。
    Friendly GUI, no code edit, fluent ui animation.
  • 多功能的弹奏控制面板,支持暂停 进度控制 倍速控制
    Multi-functional player control panel with pause, progress control and speed control.
  • 通过引导自设定键位坐标,避免按压琴键的偏移问题
    Set key coordinates by yourself with guidence, avoiding key offset when playing.
  • 在线共享乐谱,有许多优质乐谱。
    (甚至有的乐谱复杂到根本无法手弹)
    There are many excellent online shared sheets.
  • 自动更新及时修复BUG无需担心版本过时问题。
    Automatically update sheet.
  • 多语言支持
    Multi-language support.
  • ...

使用 / Usage

①Auto.js 4.1.1 Alpha2 (461) 版本下载: Ericwyn/Auto.js/releases@V4.1.1.Alpha2

Download Auto.jsEricwyn/Auto.js/releases@V4.1.1.Alpha2

手机请下载 autoJs-V4.1.1.Alpha2-common-armeabi-v7a-debug.apk

Please download autoJs-V4.1.1.Alpha2-common-armeabi-v7a-debug.apk

②为Auto.js开启无障碍服务悬浮窗权限

Turn on Accessibility service and allow Display pop-up window permission for Auto.js

③在Auto.js中新建一个脚本并粘贴以下代码并运行

Create a new script file in Auto.js. Copy the code below and run!

"ui";
"use strict";
var emitter = events.emitter(threads.currentThread());
threads.start(function() {
  emitter.emit("evaluate", (function(){
    var resp = http.get("https://gitee.com/stageguard/SkyAutoPlayerScript/raw/master/source/SkyAutoplayer.js");
    if(resp.statusCode >= 200 && resp.statusCode < 300) {
      return resp.body.string();
    } else {
      resp = http.get("https://cdn.jsdelivr.net/gh/StageGuard/SkyAutoPlayerScript@" + http.get("https://gitee.com/stageguard/SkyAutoPlayerScript/raw/master/gitVersion").body.string() + "/source/SkyAutoplayer.js");
      if(resp.statusCode >= 200 && resp.statusCode < 300) {
        return resp.body.string();
      } else {
        return "console.show();console.log(\"Failed to load script\")";
      }
	}
  }()));
});
emitter.on('evaluate', function(s){
  eval(s);
});

在Auto.js版本 4.1.1 Alpha2 (461) 中测试通过,不保证其他版本的兼容性(取决于其他版本相对于此版本的API是否有breaking changes)

清除数据 / Clear data

SkyAutoPlayerScript 在使用过程中会产生本地数据存储若想全部删除请使用Auto.js执行以下代码

SkyAutoPlayerScript will store data while running, if you want to delete all data, please run the code below in Auto.js

storages.remove("StageGuard:SkyAutoPlayer:Config");
files.removeDir("/storage/emulated/0/Documents/SkyAutoPlayer/");

上传乐谱 / Upload sheets

SkyAutoplayerScript 可以从这个仓库中的 shared_sheets.json 读取在线共享乐谱列表并可以方便地下载和弹奏。

SkyAutoplayerScript will load online shared sheets from the file shared_sheets.json in this repository and it is convenient to download and play.

你可以通过以下两种方式的任意一种方式来让你自制或经过原作者授权转载的乐谱在这个列表显示:

If you want to let sheets that transcribed by yourself or permitted to reprint shown on the list, you can do one of the following ways:

1. Pull Request

你可以克隆这个仓库,将你的乐谱添加到 shared_sheets 文件夹中,并按照以下要求在 shared_sheets.json 中添加新的项目:

You can clone this repository, put your sheet file into shared_sheets folder and add a new item in shared_sheets.json :

{
  //乐谱名称 / sheet name
  "name": "Vicetone - Nevada",
  //文件名 / sheet file name in shared_sheets folder
  "file": "Nevada.txt",
  //乐谱作者 / transcriber
  "author": "StageGuard",
  //乐谱简介 / short description about this sheet
  "desc": "Nevada SkyStudio钢琴版。\n内包含<u>比较复杂的和弦</u>,不适合手弹(笑\n你可以在SkyStudio的练习模式试试[狗头]",
  //乐谱文件中的BPM / BPM in sheet file
  "bpm": 497,
  //乐谱的键位数目(它是一个 15 键位乐谱还是 8 键位乐谱)
  //key count(a 15 key sheet or 8 key sheet)
  "keyCount": 15,
  //乐谱文件中的音高 / pitch level in sheet file
  "pitchLevel": 3,
  //键的数目 / note count
  //乐谱文件中数组 songNotes 的长度 / length of array songNotes in sheet file
  "noteCount": 1308,
  //你的社交链接 / your social link
  //你可以添加多个 / you can add many links if you want
  "social": [
    {
      //社交平台名称代号,现在支持 github, twitter, douyin(tiktok) and coolapk
      //platform code name, currently support github, twitter, douyin(tiktok) and coolapk
      "platform": "coolapk",
      //社交平台名称 / social platform name
      "name": "酷安",
      //社交连接 / social link
      "link": "http://www.coolapk.com/u/808787"
    }
  ]
},

修改完成后,申请 Pull Request ,等待 merge 即可。

After finishing, you need to create a new pull request and wait it to be merged.

请注意:在申请Pull Request之前请确保你本地的 仓库已同步至最新,以免出现意外问题!

Attention: Before creating a new pull request , make sure your local repository is up-to-date!

2. 如果你不是很懂 Github...
If you are not familiar with Github...

只需要把乐谱发送到邮箱 beamiscool@qq.com 来交给我就行啦!别忘了附带乐谱简介!

Just mail your sheet file to beamiscool@qq.com and don't forget the sheet description !

注意! / Attention!

请仔细阅读以下使用须知!
Before using this script, you must read the following notes!

  1. 未充分测试若遇到BUG请酷安私信@StageGuard或新建Issue来反馈BUG
    SkyAutoplayerScript is not fully tested, if you meet a bug, please PM CoolApk@StageGuard or create a new issue.

  2. SkyAutoplayerScript是完全免费且开源的软件/脚本(https://github.com/StageGuard/SkyAutoPlayerScript),使用 SkyAutoplayerScript 盈利的同时请标注源项目链接。
    SkyAutoplayerScript is a free and open source project. If you want to use it for commercial purposes, please add the link refers to this repository.

  3. 共享乐谱不遵守LGPL-2.1协议如您想在SkyAutoPlayer以外使用这些乐谱请自行找乐谱作者授权

    Shared sheets is not under the protection of LGPL-2.1, if you want to reprint shared sheets to other platforms, please talk to sheet transcriber by your self!

  4. 本脚本仅可用作娱乐用途,请不要在正规场合使用本脚本(请自行体会"正规场合"是什么意思)若因使用本脚本所出现了一些不友好的问题与脚本作者StageGuard无关。
    The script is just for entertainment and it is not suitable to use it in formal occasion.

  5. 脚本只能给你一时满足感而不能使你进步,请适当使用,只有真正的技术才是王道,才能使你感到快乐。
    Script just gives you a short-time sense of satisfaction and do not make you progress.

  6. 本脚本只是一个"弹奏机"并不内置曲谱请在GooglePlay下载 SkyStudio 编谱。
    This script is just a "player" and no built-in sheets, you must download SkyStudio to make sheets.

  7. 本脚本不会增加解密乐谱功能,包括但不限于加密的SkyStudio乐谱加密的JS等,也不接受加密乐谱的共享。
    The script will not support decrypt sheet, including SkyStudio encryped sheet or encrypted js etc...
    And the repository will also not accept encrypted sheet.

贡献 / Contribution

欢迎任何人贡献本项目,包括但不限于 Pull RequestIssueNew feature request 或者 贡献翻译。

Welcome everyone to contribute this project, including pull request, issue, new feature request or translation.

贡献者 / Contributor

SkyAutoPlayerScript

@tiaod

共享乐谱 / Shared sheets

酷安@Aex技术总监 酷安@夏卡卡卡 酷安@深空失忆か 抖音@子哲啊🌈(zizhe1880689503) 酷安@你们很有趣呢 酷安@情如风雪无常 酷安@慕疵 酷安@社区最弱萌新 酷安@九方辰 酷安@北极马可罗尼 哔哩哔哩@UTF16 酷安@Syngenex TwitterPhoebe@huunhut1217 酷安@终究是错付了 酷安@DesperatU 酷安@明明酱 酷安@cxk的篮球 酷安@头条乀 酷安@Alusias

翻译 / Translation

SkyAutoplayerScript 在版本 21 已支持多语言并可以在线获取语言列表,你可以查看 contribute-translation.md (English) 来了解如何贡献翻译。

SkyAutoplayerScript version 21 has supported multi-language and can also fetch online language list, follow contribute-translation.md (English) guide to contribute translation.

贡献者 / Contributor

图标来源 / Icon from:

Iconfont-阿里巴巴矢量图标库

鸣谢 / Thanks to:

projectXero (提供适用于Rhino的ListAdapter)

许可证协议 / LICENSE

    SkyAutoPlayer (Auto.js script)
	  Copyright © 2020 StageGuard

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
  USA
Description
A script to play Sheets generated by SkyStudio automatically in game Sky with accessibility services using AutoX.
sky
Readme 5.8 MiB
Languages
JavaScript 100%