index.tsx 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. import { defineComponent, reactive, computed, toRef, ref } from "vue";
  2. import styles from "./index.module.less"
  3. import { headImg } from "../image";
  4. import { headTopData } from "../index"
  5. import { Switch, showToast, Field, Popup, Slider } from "vant";
  6. import state, { refreshMusicSvg, IPlatform, checkMoveNoSave, handleGuide, resetCursorPosition } from "/src/state"
  7. import { api_closeCamera, api_openCamera, api_savePicture } from "/src/helpers/communication";
  8. import { smoothAnimationState} from "/src/page-instrument/view-detail/smoothAnimation"
  9. import Recommendation from "../../custom-plugins/helper-model/recommendation";
  10. import { resetRenderMusicScore } from "/src/view/music-score";
  11. import ScreenModel from "../../custom-plugins/helper-model/screen-model";
  12. import { getQuery } from "/src/utils/queryString";
  13. import { reCheckDelay } from "/src/page-instrument/evaluat-model"
  14. import { audioData, changeMingSongType } from "/src/view/audio-list"
  15. import useDrag from "/src/view/plugins/useDrag/index";
  16. import Dragbom from "/src/view/plugins/useDrag/dragbom";
  17. import { storeData } from "/src/store";
  18. import { getGuidance, setGuidance } from "../../custom-plugins/guide-page/api";
  19. import { metronomeData } from "/src/helpers/metronome";
  20. import { handleLoadBeatMusic } from "/src/view/audio-list"
  21. export default defineComponent({
  22. name: "settting",
  23. setup() {
  24. const query = getQuery();
  25. const helperData = reactive({
  26. screenModelShow: false, // 投屏帮助
  27. recommendationShow: false, // 建议
  28. });
  29. const zoomList = [{name:'0.5x',value: 0.5},{name:'0.75x',value: 0.65},{name:'1x',value: 0.8},{name:'1.25x',value: 1.25},{name:'1.5x',value: 1.5},{name:'1.75x',value: 1.75},{name:'2x',value: 2},{name:'2.25x',value: 2.25}]
  30. const parentClassName = "recommenBoxClass_drag";
  31. const userId = storeData.user?.id ? String(storeData.user?.id) : "";
  32. const positionInfo =
  33. state.platform !== IPlatform.PC
  34. ? {
  35. styleDrag: { value: null },
  36. }
  37. : useDrag([`${parentClassName} .top_draging`, `${parentClassName} .bom_drag`], parentClassName, toRef(helperData, "recommendationShow"), userId);
  38. // 加减评测频率
  39. const operateHz = (type: number) => {
  40. const minFrequency = state.baseFrequency - 10, maxFrequency = state.baseFrequency + 10
  41. let currentFrequency = state.setting.frequency
  42. if (type === 1) {
  43. if (currentFrequency - 1 < minFrequency) return showToast({ message: `最低标准音高${minFrequency}HZ` })
  44. currentFrequency = currentFrequency - 1
  45. } else {
  46. if (currentFrequency + 1 > maxFrequency) return showToast({ message: `最高标准音高${maxFrequency}HZ` })
  47. currentFrequency = currentFrequency + 1
  48. }
  49. state.setting.frequency = currentFrequency >= 0 ? currentFrequency : 0
  50. }
  51. const formatterTimeMs = (value: any) => value = String(Math.min(3000, value));
  52. const notationList = computed(() => {
  53. const list = state.enableNotation ? [{name:'五线谱',value:'staff'},{name:'首调',value:'firstTone'},{name:'固定调',value:'fixedTone'}] : [{name:'首调',value:'firstTone'},{name:'固定调',value:'fixedTone'}];
  54. return list;
  55. });
  56. const metronomeList = computed(() => {
  57. const list = state.modeType === 'follow' ? [{name:'音符',value:1},{name:'关闭',value:3}] : [{name:'音符',value:1},{name:'节拍',value:2},{name:'关闭',value:3}];
  58. return list;
  59. });
  60. return () => (
  61. <div class={[styles.settting]}>
  62. <div class={[styles.head, "top_draging"]}>
  63. <img class={styles.headTit} src={headImg("settingName.png")} />
  64. <img class={styles.closeImg} src={headImg("closeImg.png")} onClick={()=>{ headTopData.settingMode = false }} />
  65. </div>
  66. <div class={styles.content}>
  67. <div class={styles.conBox}>
  68. {
  69. state.isShowFingering && state.fingeringInfo.name && ["practise", "follow", "evaluating"].includes(state.modeType) && state.playType === "play" &&
  70. <div class={styles.cellBox}>
  71. <div class={styles.tit}>指法</div>
  72. <Switch v-model={state.setting.displayFingering}></Switch>
  73. </div>
  74. }
  75. {
  76. ["practise", "follow"].includes(state.modeType) &&
  77. <div class={styles.cellBox}>
  78. <div class={styles.tit}>循环播放</div>
  79. <Switch v-model={state.setting.repeatAutoPlay}></Switch>
  80. </div>
  81. }
  82. { !state.isCombineRender &&
  83. <div class={styles.cellBox}>
  84. <div class={styles.tit}>合并休止小节</div>
  85. <Switch
  86. v-model={state.setting.combineMultipleRest}
  87. onChange={ async (value) => {
  88. await checkMoveNoSave();
  89. headTopData.settingMode = false
  90. const _time = setTimeout(() => {
  91. clearTimeout(_time)
  92. refreshMusicSvg();
  93. }, 100);
  94. }}
  95. ></Switch>
  96. </div>
  97. }
  98. {/* {
  99. state.isSingleLine && state.modeType === "practise" && !state.isCombineRender && !state.isPercussion &&
  100. <div class={styles.cellBox}>
  101. <div class={styles.tit}>旋律线</div>
  102. <Switch
  103. v-model={smoothAnimationState.isShow.value}
  104. onChange={(value) => {
  105. state.melodyLine = value
  106. }}
  107. ></Switch>
  108. </div>
  109. } */}
  110. <div class={styles.cellBox} style={{border:"none"}}>
  111. <div class={styles.tit}>指针模式</div>
  112. <div class={styles.radioBox}>
  113. {
  114. metronomeList.value.map(item=>{
  115. return <div class={ metronomeData.cursorMode===item.value && styles.active } onClick={ ()=>{
  116. if (metronomeData.cursorMode === item.value) {
  117. return
  118. }
  119. // 切换光标模式
  120. metronomeData.cursorMode = item.value
  121. resetCursorPosition()
  122. }}>{item.name}</div>
  123. })
  124. }
  125. </div>
  126. </div>
  127. <div class={styles.pointerCon}>
  128. <div class={styles.pointerBox}>
  129. <div>音符:指针跟随音符播放</div>
  130. {
  131. state.modeType !== 'follow' && <div>节拍:指针跟随节拍播放</div>
  132. }
  133. <div>关闭:不显示指针</div>
  134. </div>
  135. </div>
  136. {
  137. state.modeType === 'practise' && state.playSource === "mingSong" && state.mingSong && state.mingSongGirl &&
  138. <div class={styles.cellBox}>
  139. <div class={styles.tit}>唱名类型</div>
  140. <div class={styles.radioBox}>
  141. {
  142. [{name:'男声',value:1}, {name:'女声',value:0}].map(item=>{
  143. return <div class={ audioData.mingSongType===item.value && styles.active } onClick={ ()=>{
  144. if(audioData.mingSongType === item.value){
  145. return
  146. }
  147. audioData.mingSongType = item.value as 0|1
  148. // 加载节拍器音频
  149. handleLoadBeatMusic()
  150. changeMingSongType()
  151. } }>{item.name}</div>
  152. })
  153. }
  154. </div>
  155. </div>
  156. }
  157. {
  158. state.modeType === "evaluating" &&
  159. <>
  160. {
  161. (!query.workRecord && !query.evaluatingRecord) &&
  162. <div class={styles.cellBox}>
  163. <div class={styles.tit}>评测难度</div>
  164. <div class={styles.radioBox}>
  165. {
  166. [{name:'入门',value:"BEGINNER"},{name:'进阶',value:"ADVANCED"},{name:'大师',value:"PERFORMER"}].map(item=>{
  167. return <div class={ state.setting.evaluationDifficulty===item.value && styles.active } onClick={ ()=>{
  168. state.setting.evaluationDifficulty = item.value as any
  169. } }>{item.name}</div>
  170. })
  171. }
  172. </div>
  173. </div>
  174. }
  175. <div class={styles.cellBox}>
  176. <div class={styles.tit}>延迟检测</div>
  177. {/* <Switch v-model={state.setting.soundEffect}></Switch> */}
  178. <div class={styles.titbtn} onClick={() => {
  179. reCheckDelay();
  180. }}>重新检测</div>
  181. </div>
  182. <div class={[styles.cellBox, state.setting.camera && styles.isCamera]}>
  183. <div class={styles.tit}>摄像头</div>
  184. <Switch
  185. // v-model={state.setting.camera}
  186. modelValue={state.setting.camera}
  187. onChange={ async (value) => {
  188. if (value) {
  189. const res = await api_openCamera();
  190. // 没有授权
  191. if (res?.content?.reson) {
  192. state.setting.camera = false
  193. } else {
  194. state.setting.camera = true
  195. }
  196. } else {
  197. api_closeCamera();
  198. state.setting.camera = false;
  199. }
  200. }}
  201. ></Switch>
  202. </div>
  203. <div class={styles.cellBox} style={{ display: state.setting.camera ? "" : "none" }}>
  204. <div class={styles.tit}>不透明度</div>
  205. <div class={styles.spendCon}>
  206. <div class={styles.sliderCon}>
  207. <Slider class={styles.slider} max={100} min={0} v-model={state.setting.cameraOpacity}>
  208. {{
  209. button: () =>
  210. <div class={styles.customButton}>
  211. <div class={styles.speedVal}>{ state.setting.cameraOpacity }</div>
  212. <div class={styles.speedBtn}></div>
  213. </div>
  214. }}
  215. </Slider>
  216. </div>
  217. </div>
  218. </div>
  219. <div class={styles.cellBox}>
  220. <div class={styles.tit}>标准音高</div>
  221. <div class={styles.frequency}>
  222. <img src={headImg("cutImg.png")} class={[styles.btn]} onClick={() => operateHz(1)} />
  223. <div class={styles.frequencyNum}>{state.setting.frequency}HZ</div>
  224. <img src={headImg("addImg.png")} class={[styles.btn]} onClick={() => operateHz(2)} />
  225. </div>
  226. </div>
  227. <div class={styles.cellBox}>
  228. <div class={styles.tit}>反应时间</div>
  229. <div class={styles.reactionTimeBox}>
  230. <Field class={styles.reactionTime} type="digit"
  231. placeholder="最大可输入3000毫秒"
  232. formatter={formatterTimeMs}
  233. input-align={'center'}
  234. v-model:modelValue={state.setting.reactionTimeMs} />
  235. <div class={styles.timeName}>毫秒</div>
  236. </div>
  237. </div>
  238. </>
  239. }
  240. {/** 练习模式才有单行/多行谱切换功能,跟练、评测只有单行谱模式 */}
  241. {
  242. ["practise", "evaluating"].includes(state.modeType) ?
  243. <div class={styles.cellBox}>
  244. <div class={styles.tit}>切换谱面</div>
  245. <div class={[styles.radioBox, styles.qhBox]}>
  246. {
  247. [{name:'单行谱',value:true},{name:'多行谱',value:false}].map(item=>{
  248. return <div class={ state.isSingleLine===item.value && styles.active } onClick={ async ()=>{
  249. if(state.isSingleLine === item.value){
  250. return
  251. }
  252. await checkMoveNoSave();
  253. headTopData.settingMode = false
  254. // resetRenderMusicScore(state.musicRenderType)
  255. const _time = setTimeout(() => {
  256. state.isSingleLine = item.value
  257. clearTimeout(_time)
  258. refreshMusicSvg();
  259. }, 100);
  260. // musicScoreRef.value?.refreshMusicScore()
  261. } }>{item.name}</div>
  262. })
  263. }
  264. </div>
  265. </div> : null
  266. }
  267. {
  268. state.enableNotation || state.specialShowNotation ?
  269. <div class={styles.cellBox}>
  270. <div class={styles.tit}>转谱</div>
  271. <div class={styles.radioBox}>
  272. {
  273. notationList.value.map(item=>{
  274. return <div class={ state.musicRenderType===item.value && styles.active } onClick={ async ()=>{
  275. if(state.musicRenderType === item.value){
  276. return
  277. }
  278. await checkMoveNoSave();
  279. headTopData.settingMode = false
  280. // resetRenderMusicScore(state.musicRenderType)
  281. const _time = setTimeout(() => {
  282. state.musicRenderType = item.value as any
  283. clearTimeout(_time)
  284. refreshMusicSvg();
  285. }, 100);
  286. } }>{item.name}</div>
  287. })
  288. }
  289. </div>
  290. </div> : null
  291. }
  292. {
  293. <div class={styles.cellBox}>
  294. <div class={styles.tit}>谱面大小</div>
  295. <div class={[styles.radioBox, styles.speBox]}>
  296. {
  297. zoomList.map(item=>{
  298. return <div class={ state.zoom===item.value && styles.active } onClick={ async ()=>{
  299. if(state.zoom === item.value){
  300. return
  301. }
  302. await checkMoveNoSave();
  303. headTopData.settingMode = false
  304. // resetRenderMusicScore(state.musicRenderType)
  305. const _time = setTimeout(() => {
  306. state.zoom = item.value as any
  307. localStorage.setItem('scoreZoom',String(state.zoom))
  308. clearTimeout(_time)
  309. refreshMusicSvg();
  310. }, 100);
  311. } }>{item.name}</div>
  312. })
  313. }
  314. </div>
  315. </div>
  316. }
  317. <div class={styles.cellBtnBox}>
  318. <img src={headImg("tpbz.png")} onClick={() => (helperData.screenModelShow = true)} />
  319. {
  320. !query.isCbs && <img src={headImg("yjfk.png")} onClick={() => (helperData.recommendationShow = true)} />
  321. }
  322. </div>
  323. </div>
  324. </div>
  325. <Popup
  326. v-model:show={helperData.recommendationShow}
  327. class="popup-custom van-scale center-closeBtn recommenBoxClass_drag"
  328. transition="van-scale"
  329. teleport="body"
  330. overlay-style={{background:'rgba(0, 0, 0, 0.7)'}}
  331. style={positionInfo.styleDrag.value}
  332. >
  333. <Recommendation
  334. onClose={() => {
  335. helperData.recommendationShow = false;
  336. }}
  337. />
  338. {state.platform === IPlatform.PC && <Dragbom showGuide={!state.guideInfo?.teacherDrag} onGuideDone={handleGuide} />}
  339. </Popup>
  340. <Popup
  341. class={["popup-custom"]}
  342. v-model:show={helperData.screenModelShow}
  343. onClose={() => {
  344. helperData.screenModelShow = false;
  345. }}
  346. position="right"
  347. teleport="body"
  348. >
  349. <ScreenModel
  350. onClose={(open: Boolean) => {
  351. helperData.screenModelShow = false;
  352. }}
  353. />
  354. </Popup>
  355. </div>
  356. );
  357. },
  358. });