feat:语音文件更新
This commit is contained in:
		
							parent
							
								
									3d5bba8022
								
							
						
					
					
						commit
						5524d0e7c9
					
				
							
								
								
									
										1
									
								
								entry/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								entry/.gitignore
									
									
									
									
										vendored
									
									
								
							| @ -3,3 +3,4 @@ | |||||||
| /build | /build | ||||||
| /.cxx | /.cxx | ||||||
| /.idea | /.idea | ||||||
|  | /oh_modules | ||||||
| @ -98,8 +98,8 @@ struct Index { | |||||||
|     const students = await getSyncData('USER') |     const students = await getSyncData('USER') | ||||||
|     const stuInfo = students[0] || {}; |     const stuInfo = students[0] || {}; | ||||||
|     const {xm,sfzmhm,lsh,kszp,ksdd,kssycs,kslx} = stuInfo; |     const {xm,sfzmhm,lsh,kszp,ksdd,kssycs,kslx} = stuInfo; | ||||||
|     this.name = xm; |     this.name = xm || '测试考生'; | ||||||
|     this.idCard = sfzmhm; |     this.idCard = sfzmhm || '01234567891010'; | ||||||
|     this.lsh = lsh; |     this.lsh = lsh; | ||||||
|     this.kszp = kszp; |     this.kszp = kszp; | ||||||
|     this.ksdd = ksdd; |     this.ksdd = ksdd; | ||||||
| @ -405,7 +405,7 @@ struct Index { | |||||||
|       ? await this.initSystemKm2Param(systemparm) |       ? await this.initSystemKm2Param(systemparm) | ||||||
|       : await this.initSystemKm3Param(systemparm) |       : await this.initSystemKm3Param(systemparm) | ||||||
|     //@ts-ignore |     //@ts-ignore | ||||||
|     await this.initMarkRules(testMarkRules); |     await this.initMarkRules(initDataObj.mark); | ||||||
|     await this.initSysset(initDataObj.sysset); |     await this.initSysset(initDataObj.sysset); | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
| @ -484,6 +484,8 @@ struct Index { | |||||||
|               }.height(40) |               }.height(40) | ||||||
|               Row() { |               Row() { | ||||||
|                 Flex({ direction: FlexDirection.Column }) { |                 Flex({ direction: FlexDirection.Column }) { | ||||||
|  | 
 | ||||||
|  |                   if(this.kfArr.length){ | ||||||
|                     List({}) { |                     List({}) { | ||||||
|                       ForEach(this.kfArr, (item) => { |                       ForEach(this.kfArr, (item) => { | ||||||
|                         ListItem() { |                         ListItem() { | ||||||
| @ -506,6 +508,19 @@ struct Index { | |||||||
|                         }.margin({bottom:25}) |                         }.margin({bottom:25}) | ||||||
|                       }) |                       }) | ||||||
|                     }.padding({left:15,right:15,top:30,bottom:5}) |                     }.padding({left:15,right:15,top:30,bottom:5}) | ||||||
|  |                   }else{ | ||||||
|  |                     Column() { | ||||||
|  |                       Row() { | ||||||
|  |                         Text('暂无扣分项').fontSize(this.BIGFONTSIZE).fontColor('#FFF') | ||||||
|  |                       } | ||||||
|  |                       .width('100%') | ||||||
|  |                       .backgroundColor('#38260B') | ||||||
|  |                       .justifyContent(FlexAlign.SpaceBetween) | ||||||
|  |                       .padding({ top: 12, bottom: 12, left: 8, right: 3 }) | ||||||
|  | 
 | ||||||
|  |                     }.margin({ top: 35 }).padding({left:20,right:20}).alignItems(HorizontalAlign.Start) | ||||||
|  |                   } | ||||||
|  | 
 | ||||||
|                 } |                 } | ||||||
|                   .backgroundImage($rawfile('judge/score_bg.png'), ImageRepeat.NoRepeat) |                   .backgroundImage($rawfile('judge/score_bg.png'), ImageRepeat.NoRepeat) | ||||||
|                   .backgroundImageSize({ width: '100%', height: '100%' }) |                   .backgroundImageSize({ width: '100%', height: '100%' }) | ||||||
| @ -640,7 +655,6 @@ struct Index { | |||||||
|               }) |               }) | ||||||
|             } |             } | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
|             Row(){ |             Row(){ | ||||||
|               Row(){}.width(60).height(60).backgroundImage($rawfile('judge/phone.png'), ImageRepeat.NoRepeat).backgroundImageSize({ width: '100%', height: '100%' }) |               Row(){}.width(60).height(60).backgroundImage($rawfile('judge/phone.png'), ImageRepeat.NoRepeat).backgroundImageSize({ width: '100%', height: '100%' }) | ||||||
|               Text('呼叫请求').fontColor('#FFF').fontSize(32).padding({right:12}) |               Text('呼叫请求').fontColor('#FFF').fontSize(32).padding({right:12}) | ||||||
|  | |||||||
| @ -1,146 +0,0 @@ | |||||||
| import hilog from '@ohos.hilog'; |  | ||||||
| import apiJudgeSdk from 'libJudgeSdk.so'; |  | ||||||
| import Judge from './judgeSDK/utils/judge-real' |  | ||||||
| import {Project,ProjectObj,MarkRule} from './judgeSDK/api/judgeSDK.d' |  | ||||||
| import AccountTable from '../common/database/tables/AccountTable'; |  | ||||||
| import MA_SYSSET from '../common//constants/MA_SYSSET'; |  | ||||||
| import common from '@ohos.app.ability.common'; |  | ||||||
| import { getSyncData } from '../common/service/initable' |  | ||||||
| 
 |  | ||||||
| @Entry |  | ||||||
| @Component |  | ||||||
| struct Index { |  | ||||||
|   @State message: string = '开始绘制' |  | ||||||
| 
 |  | ||||||
|   // 控制XComponent组件的创建和销毁 |  | ||||||
|   @State draw: boolean = false |  | ||||||
|   //监管接口序列号 |  | ||||||
|   @State serialNumber:number = 0 |  | ||||||
| 
 |  | ||||||
|   //模拟考试项目 |  | ||||||
|   @State projects:Project[] = [] |  | ||||||
|   @State projectsObj:ProjectObj = {} |  | ||||||
|   @State markRuleListObj:MarkRule ={} |  | ||||||
|   private context = getContext(this) as common.UIAbilityContext; |  | ||||||
| 
 |  | ||||||
|   // xcomponentController: XComponentController = new XComponentController() |  | ||||||
| 
 |  | ||||||
|   build() { |  | ||||||
|     Row() { |  | ||||||
|       Column() { |  | ||||||
|         if (this.draw) { |  | ||||||
|           XComponent({ |  | ||||||
|             id: 'duolun_plugin_id_draw', //显示轨迹窗口id名称,注意这个ID要和C++侧一致,不能变 |  | ||||||
|             type: 'surface', |  | ||||||
|             libraryname: 'JudgeSdk' |  | ||||||
|           }) |  | ||||||
|             .width(640) |  | ||||||
|             .height(480) |  | ||||||
|             .onLoad(() => { |  | ||||||
|               apiJudgeSdk.examJudgeMapSetDrawing(true); //停止绘制地图轨迹,false:表示结束绘制 |  | ||||||
|               hilog.info(0x0000, 'sdk-tag-ets', 'onLoad'); |  | ||||||
| 
 |  | ||||||
|             }) |  | ||||||
|             .onDestroy(() => { |  | ||||||
|               hilog.info(0x0000, 'sdk-tag-ets', 'onDestroy'); |  | ||||||
|               apiJudgeSdk.examJudgeMapSetDrawing(false); //停止绘制地图轨迹,false:表示结束绘制 |  | ||||||
|             }) |  | ||||||
|         } else { |  | ||||||
|           Column() {} |  | ||||||
|           .width(640/2) |  | ||||||
|           .height(480/2) |  | ||||||
|         } |  | ||||||
| 
 |  | ||||||
|         Text(this.message) |  | ||||||
|           .fontSize(50) |  | ||||||
|           .fontWeight(FontWeight.Bold) |  | ||||||
|           .fontColor('rgba(255,255,255,0)') |  | ||||||
|           .onClick(() => { |  | ||||||
|             hilog.info(0x0000, 'sdk-tag-ets', 'start render'); |  | ||||||
|             // 控制XComponent组件的创建和销毁,创建XComponent组件时,会调用libentry.so中的模块注册函数(Init)。 |  | ||||||
|             this.draw = !this.draw; |  | ||||||
|             clearInterval(globalThis.realTimer) |  | ||||||
|           }) |  | ||||||
|       } |  | ||||||
|       .width('100%') |  | ||||||
|       .backgroundColor('#777777') |  | ||||||
|     } |  | ||||||
|     .height('100%') |  | ||||||
|   } |  | ||||||
| 
 |  | ||||||
|   async aboutToAppear() { |  | ||||||
| 
 |  | ||||||
|     await this.initMarkRules(); |  | ||||||
|     //初始化项目 |  | ||||||
|     await this.initProjectInfo(); |  | ||||||
|     //初始化sysset表 |  | ||||||
|     await this.initSysset() |  | ||||||
| 
 |  | ||||||
|     const judge = new Judge(this) |  | ||||||
| 
 |  | ||||||
|   } |  | ||||||
| 
 |  | ||||||
|   //获取项目信息 |  | ||||||
|   async initProjectInfo(){ |  | ||||||
|     const that = this; |  | ||||||
|     const systemParamsArr = await getSyncData('MA_SYSTEMPARM') |  | ||||||
|     const itemInfoArr = await getSyncData('MA_ITEMINFO') |  | ||||||
|     //@ts-ignore |  | ||||||
|     const filterProjectsArr = systemParamsArr.filter(item => item.no1 == 6) |  | ||||||
| 
 |  | ||||||
|     that.projects = filterProjectsArr.map(project => { |  | ||||||
| 
 |  | ||||||
|       //TODO 临时代码 |  | ||||||
|       const testType= { |  | ||||||
|         0:1, |  | ||||||
|         2:4, |  | ||||||
|         3:3, |  | ||||||
|         5:5, |  | ||||||
|         6:2 |  | ||||||
|       } |  | ||||||
|       const currentProject = { |  | ||||||
|         name:decodeURI(project.txt1), |  | ||||||
|         abbreviation:decodeURI(project.txt3), |  | ||||||
|         projectCode:decodeURI(project.no2), |  | ||||||
|         projectCodeCenter:decodeURI(project.txt2), |  | ||||||
|         //@ts-ignore |  | ||||||
|         type:testType[decodeURI(project.no2)*1] |  | ||||||
|         // type:'0' + (project.type || '1') |  | ||||||
|       } |  | ||||||
|       that.projectsObj[project.no2] = currentProject |  | ||||||
|       return currentProject |  | ||||||
|     }); |  | ||||||
|   } |  | ||||||
| 
 |  | ||||||
|   //获取扣分代码信息 |  | ||||||
|   async initMarkRules(){ |  | ||||||
|     const that = this; |  | ||||||
|     const markRuleParams = await getSyncData('MA_MARKRULE') |  | ||||||
|     //@ts-ignore |  | ||||||
|     markRuleParams.forEach(mark=>{ |  | ||||||
|       that.markRuleListObj[`${mark.itemno}_${mark.markserial}`] = { |  | ||||||
|         itemno:mark.itemno*1, |  | ||||||
|         markcatalog:mark.markcatalog, |  | ||||||
|         markshow:decodeURI(mark.markshow), |  | ||||||
|         markreal:mark.markreal*1, |  | ||||||
|         markserial:mark.markserial |  | ||||||
|       }; |  | ||||||
|     }) |  | ||||||
|   } |  | ||||||
| 
 |  | ||||||
|   // 获取sysset表信息 |  | ||||||
|   async initSysset(){ |  | ||||||
|     const that = this; |  | ||||||
|     const db = new AccountTable(()=>{},MA_SYSSET); |  | ||||||
|     const syssetParams = await getSyncData('MA_SYSSET') |  | ||||||
|     //@ts-ignore |  | ||||||
|     const serialNumberArr = syssetParams.filter(sys => sys.v_no === '901'); |  | ||||||
|     that.serialNumber = serialNumberArr || '1234567' |  | ||||||
|   } |  | ||||||
| 
 |  | ||||||
|   aboutToDisappear() { |  | ||||||
|     //apiJudgeSdk.stopRender(); |  | ||||||
| 
 |  | ||||||
|   } |  | ||||||
| 
 |  | ||||||
| } |  | ||||||
| @ -14,7 +14,7 @@ const amplifyArrs = [ | |||||||
| ] | ] | ||||||
| 
 | 
 | ||||||
| @Component | @Component | ||||||
| struct EndPopup { | export default struct  EndPopup { | ||||||
|   constructor() { |   constructor() { | ||||||
|     super() |     super() | ||||||
|   } |   } | ||||||
| @ -35,5 +35,3 @@ struct EndPopup { | |||||||
|     .onClick(()=>{this.closeAmplifyPop()}) |     .onClick(()=>{this.closeAmplifyPop()}) | ||||||
|   } |   } | ||||||
| } | } | ||||||
| 
 |  | ||||||
| export default EndPopup |  | ||||||
| @ -5,7 +5,7 @@ interface SEL{ | |||||||
| } | } | ||||||
| 
 | 
 | ||||||
| @Component | @Component | ||||||
| struct DeductedPopup { | export default struct  DeductedPopup { | ||||||
|   constructor() { |   constructor() { | ||||||
|     super() |     super() | ||||||
|   } |   } | ||||||
| @ -150,5 +150,3 @@ struct DeductedPopup { | |||||||
|     }.width('100%').height('100%').position({y:0}).backgroundColor('rgba(0,0,0,0.7)') |     }.width('100%').height('100%').position({y:0}).backgroundColor('rgba(0,0,0,0.7)') | ||||||
|   } |   } | ||||||
| } | } | ||||||
| 
 |  | ||||||
| export default DeductedPopup |  | ||||||
| @ -1,6 +1,6 @@ | |||||||
| 
 | 
 | ||||||
| @Component | @Component | ||||||
| struct EndPopup { | export default struct  EndPopup { | ||||||
|   constructor() { |   constructor() { | ||||||
|     super() |     super() | ||||||
|   } |   } | ||||||
| @ -23,5 +23,3 @@ struct EndPopup { | |||||||
|     }.width('100%').height('100%').position({y:0}).backgroundColor('rgba(0,0,0,0.7)') |     }.width('100%').height('100%').position({y:0}).backgroundColor('rgba(0,0,0,0.7)') | ||||||
|   } |   } | ||||||
| } | } | ||||||
| 
 |  | ||||||
| export default EndPopup |  | ||||||
| @ -1,6 +1,5 @@ | |||||||
| 
 |  | ||||||
| @Component | @Component | ||||||
| struct LoadingPopup { | export default struct LoadingPopup { | ||||||
|   constructor() { |   constructor() { | ||||||
|     super() |     super() | ||||||
|   } |   } | ||||||
| @ -17,5 +16,3 @@ struct LoadingPopup { | |||||||
|     }.width('100%').height('100%').position({y:0}).backgroundColor('rgba(0,0,0,0.7)') |     }.width('100%').height('100%').position({y:0}).backgroundColor('rgba(0,0,0,0.7)') | ||||||
|   } |   } | ||||||
| } | } | ||||||
| 
 |  | ||||||
| export default LoadingPopup |  | ||||||
|  | |||||||
| @ -4,13 +4,8 @@ import apiJudgeSdk from 'libJudgeSdk.so'; | |||||||
| // import apiJudgeSdk from '@ohos.judgesdk'; | // import apiJudgeSdk from '@ohos.judgesdk'; | ||||||
| 
 | 
 | ||||||
| import Judge from '../../judgeSDK/utils/judge-real' | import Judge from '../../judgeSDK/utils/judge-real' | ||||||
| // import Judge from '../../judgeSDK/judge-track-playback' |  | ||||||
| import {Project,ProjectObj,MarkRule} from '../../judgeSDK/api/judgeSDK.d' | import {Project,ProjectObj,MarkRule} from '../../judgeSDK/api/judgeSDK.d' | ||||||
| import AccountTable from '../../../common/database/tables/AccountTable'; |  | ||||||
| import MA_SYSSET from '../../../common//constants/MA_SYSSET'; |  | ||||||
| import common from '@ohos.app.ability.common'; | import common from '@ohos.app.ability.common'; | ||||||
| import { getSyncData } from '../../../common/service/initable' |  | ||||||
| import {testAllitems,testUIAllitems,testMarkRules} from '../../judgeSDK/dataTest/index' |  | ||||||
| 
 | 
 | ||||||
| @Component | @Component | ||||||
| struct RealTime { | struct RealTime { | ||||||
|  | |||||||
| @ -1,27 +0,0 @@ | |||||||
| 
 |  | ||||||
| @Component |  | ||||||
| struct EndPopup { |  | ||||||
|   constructor() { |  | ||||||
|     super() |  | ||||||
|   } |  | ||||||
| 
 |  | ||||||
|   private title:string = '' |  | ||||||
|   private cancelFn:(event?: ClickEvent) => void |  | ||||||
|   private confirmFn:(event?: ClickEvent) => void |  | ||||||
| 
 |  | ||||||
|   build(){ |  | ||||||
|     Column(){ |  | ||||||
|       Column(){ |  | ||||||
|         Text(this.title).fontSize(38).margin({bottom:20}) |  | ||||||
|         Row(){}.height(50) |  | ||||||
|         Row(){ |  | ||||||
|           Text('取消').backgroundImage($rawfile('judge/end-btn.png'),ImageRepeat.NoRepeat).backgroundImageSize({width:'100%',height:'100%'}).width(250).height(100).fontSize(30).fontColor('#FFF').textAlign(TextAlign.Center).onClick(this.cancelFn) |  | ||||||
|           Text('确定').backgroundImage($rawfile('judge/end-btn.png'),ImageRepeat.NoRepeat).backgroundImageSize({width:'100%',height:'100%'}).width(250).height(100).fontSize(30).fontColor('#FFF').textAlign(TextAlign.Center).margin({left:45}).onClick(this.confirmFn) |  | ||||||
|         } |  | ||||||
|       }.width('80%').height('70%').backgroundColor('#E6E3DF').borderRadius(38).position({y:'12%',x:'10%'}).justifyContent(FlexAlign.Center) |  | ||||||
| 
 |  | ||||||
|     }.width('100%').height('100%').position({y:0}).backgroundColor('rgba(0,0,0,0.7)') |  | ||||||
|   } |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| export default EndPopup |  | ||||||
| @ -3116,7 +3116,6 @@ export const testMarkRules = [{ | |||||||
| }, { | }, { | ||||||
| 
 | 
 | ||||||
|     "itemno": "41", |     "itemno": "41", | ||||||
| 
 |  | ||||||
|     "markcatalog": "41603", |     "markcatalog": "41603", | ||||||
|     "markdepend": "通过急弯、坡路、拱桥、人行横道或者没有交通信号灯控制的路口时,不交替使用远近光灯示意", |     "markdepend": "通过急弯、坡路、拱桥、人行横道或者没有交通信号灯控制的路口时,不交替使用远近光灯示意", | ||||||
|     "markreal": "-100", |     "markreal": "-100", | ||||||
|  | |||||||
| @ -19,7 +19,8 @@ import { judgeConfig } from './utils/judge-config' | |||||||
| import {writeObjectOut,uploadExamProgressData} from '../../api/judge' | import {writeObjectOut,uploadExamProgressData} from '../../api/judge' | ||||||
| import {deepClone,getCurrentTime,stringToASC,string2Bytes,fillZero,Array2Byte,convertGpsCoord2} from '../../common/utils/tools' | import {deepClone,getCurrentTime,stringToASC,string2Bytes,fillZero,Array2Byte,convertGpsCoord2} from '../../common/utils/tools' | ||||||
| import {getTranslateSignals,getCarStatus,getCarStatusType,getCenterProjectStatus,plcStrToJson,plcStrToWXJson,promptWxCode,getKmProjectVoice,senorToWXDataStr}  from './utils//judge-common' | import {getTranslateSignals,getCarStatus,getCarStatusType,getCenterProjectStatus,plcStrToJson,plcStrToWXJson,promptWxCode,getKmProjectVoice,senorToWXDataStr}  from './utils//judge-common' | ||||||
| import {examJudgeSetLogCallback,examJudgeBeginExam,examJudgeInit,examJudgeRealExam,examJudgeSetRealExamCallback,examJudgeSetPerformCallback,examJudgeEndExam,examJudgeArtificialMark,examJudgeArtificialItem} from './api/index' | import {examJudgeSetLogCallback,examJudgeBeginExam,examJudgeInit,examJudgeRealExam,examJudgeSetRealExamCallback,examJudgeSetPerformCallback,examJudgeEndExam,examJudgeArtificialMark,examJudgeArtificialItem | ||||||
|  | ,examJudgeMapSetScaling,examJudgeMapSetParam} from './api/index' | ||||||
| import UsbService from '../../common/service/usbService' | import UsbService from '../../common/service/usbService' | ||||||
| 
 | 
 | ||||||
| import prompt from '@ohos.prompt'; | import prompt from '@ohos.prompt'; | ||||||
| @ -89,7 +90,7 @@ export default class Judge{ | |||||||
|     } |     } | ||||||
|     //日志回调
 |     //日志回调
 | ||||||
|     console.info(judgeTag,'1.进入评判入口') |     console.info(judgeTag,'1.进入评判入口') | ||||||
|     await examJudgeSetLogCallback(3, async (level, info,len)=>{ |     await examJudgeSetLogCallback(6, async (level, info,len)=>{ | ||||||
|       console.log('评判日志:' + info) |       console.log('评判日志:' + info) | ||||||
|       await fileLog.setExamJudgeLogData(info); |       await fileLog.setExamJudgeLogData(info); | ||||||
|     }) |     }) | ||||||
| @ -134,12 +135,19 @@ export default class Judge{ | |||||||
|     console.info(judgeTag,'6.开始考试注册完成') |     console.info(judgeTag,'6.开始考试注册完成') | ||||||
| 
 | 
 | ||||||
|     avPlayer.playAudio(['voice/ksks.WAV']) |     avPlayer.playAudio(['voice/ksks.WAV']) | ||||||
|  | 
 | ||||||
|  |     await examJudgeMapSetParam(640, 480); //设置参数宽、高
 | ||||||
|  |     await examJudgeMapSetScaling(120); //设置缩放比例,一般默认填100(就是100%的意思) ,数字越大视野越大,数字越小视野越小,不能为0
 | ||||||
|  | 
 | ||||||
|  |     this.judgeUI.draw = true | ||||||
|  | 
 | ||||||
|     // 处理轨迹plc信息
 |     // 处理轨迹plc信息
 | ||||||
|     if(isTrajectoryOpen){ |     if(isTrajectoryOpen){ | ||||||
|       handleTrajectoryUdp(strArr); |       handleTrajectoryUdp(strArr); | ||||||
|       return |       return | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|     // 处理实时udp里的plc信号
 |     // 处理实时udp里的plc信号
 | ||||||
|     globalThis.udpClient.onMessage(async (msg) => { |     globalThis.udpClient.onMessage(async (msg) => { | ||||||
|       handleUdp(msg) |       handleUdp(msg) | ||||||
| @ -254,12 +262,15 @@ export default class Judge{ | |||||||
|     const {xmdm,code} = sound; |     const {xmdm,code} = sound; | ||||||
|     //判断是不是模拟灯光语音
 |     //判断是不是模拟灯光语音
 | ||||||
|     const isLight = code.slice(0,3) === '417'; |     const isLight = code.slice(0,3) === '417'; | ||||||
|     console.info(judgeTag,'评判语音提示' + JSON.stringify(sound)) |     if(isLight){ | ||||||
| 
 |       console.info(judgeTag,'模拟灯光开始播放:' + code) | ||||||
|  |     } | ||||||
|     avPlayer.playAudio([`voice/${code}.mp3`],true,()=>{ |     avPlayer.playAudio([`voice/${code}.mp3`],true,()=>{ | ||||||
|       if(isLight){ |       if(isLight){ | ||||||
|  |         console.info(judgeTag,'播放结束:' + code) | ||||||
|  |         setTimeout(()=>{ | ||||||
|           this.wav = 1; |           this.wav = 1; | ||||||
|         console.info(judgeTag,'模拟灯光播放代码:' + code) |         }) | ||||||
|       } |       } | ||||||
|     }) |     }) | ||||||
| 
 | 
 | ||||||
| @ -314,10 +325,10 @@ export default class Judge{ | |||||||
| 
 | 
 | ||||||
|     // 扣分
 |     // 扣分
 | ||||||
|       case 3: |       case 3: | ||||||
|         avPlayer.playAudio([`voice/${kf[kfLen -1].markcatalog}.mp3`]) |         // avPlayer.playAudio([`voice/${kf[kfLen -1].markcatalog}.mp3`])
 | ||||||
|         await judgeTask.addTask(async ()=>{ |         await judgeTask.addTask(async ()=>{ | ||||||
|           console.info(judgeTag,`项目扣分-${kf[kfLen -1].markcatalog}-${kf[kfLen -1].desc}`) |           console.info(judgeTag,`项目扣分-${kf[kfLen -1].markcatalog}-${kf[kfLen -1].desc}`) | ||||||
|           await pointsDedute(kf[kfLen -1].xmdm,kf[kfLen -1]) |           // await pointsDedute(kf[kfLen -1].xmdm,kf[kfLen -1])
 | ||||||
|         }) |         }) | ||||||
|         break; |         break; | ||||||
| 
 | 
 | ||||||
| @ -946,7 +957,6 @@ export default class Judge{ | |||||||
|       if(usbService.isWXUSBDevice){ |       if(usbService.isWXUSBDevice){ | ||||||
|         usbService.sendUSB(str) |         usbService.sendUSB(str) | ||||||
|       } |       } | ||||||
|       console.info(judgeTag,str) |  | ||||||
|       await examJudgeRealExam(msg) |       await examJudgeRealExam(msg) | ||||||
|       num++ |       num++ | ||||||
|     },200) |     },200) | ||||||
|  | |||||||
| @ -9,9 +9,8 @@ export const judgeConfig = { | |||||||
|   // 本地模型地址
 |   // 本地模型地址
 | ||||||
|   modelPath: 'models/model_enc', |   modelPath: 'models/model_enc', | ||||||
|   // 轨迹回放地址
 |   // 轨迹回放地址
 | ||||||
|   trajectoryPath: 'logs/0000000000001_342323199501470011_测试学员1_1970_01_01_08_44_33/judge_exam_data.txt' |   trajectoryPath: 'logs/2024_06_18/0000000000001_342323199501470011_测试学员1_2024_06_26_10_04_23/judge_exam_data.txt' | ||||||
| } | } | ||||||
| 
 |  | ||||||
| //0000000000001_342323199501470011_测试学员1_2024_04_28_10_59_44
 | //0000000000001_342323199501470011_测试学员1_2024_04_28_10_59_44
 | ||||||
| // 模拟灯光轨迹
 | // 模拟灯光轨迹
 | ||||||
| // test_sub3_car_test_jinan-32038219990808021X-20240417092356.txt
 | // test_sub3_car_test_jinan-32038219990808021X-20240417092356.txt
 | ||||||
|  | |||||||
| @ -1,11 +1,5 @@ | |||||||
| import { | import { | ||||||
|   examJudgeSetLogCallback, |  | ||||||
|   examJudgeBeginExam, |  | ||||||
|   examJudgeInit, |  | ||||||
|   examJudgeRealExam, |  | ||||||
|   examJudgeSetRealExamCallback, |  | ||||||
|   examJudgeMapSetParam, |   examJudgeMapSetParam, | ||||||
|   examJudgeMapSetDrawing, |  | ||||||
|   examJudgeMapSetScaling |   examJudgeMapSetScaling | ||||||
| } from '../api/index' | } from '../api/index' | ||||||
| import systemTime from '@ohos.systemDateTime'; | import systemTime from '@ohos.systemDateTime'; | ||||||
|  | |||||||
| @ -17,7 +17,7 @@ export default class JudgeTask{ | |||||||
|         try { |         try { | ||||||
|           await currentTask(); |           await currentTask(); | ||||||
|         }catch (e){ |         }catch (e){ | ||||||
|           console.info(TAG,'过程数据接口解析错误') |           // console.info(TAG,'过程数据接口解析错误')
 | ||||||
|           prompt.showToast({ |           prompt.showToast({ | ||||||
|             message: '过程数据接口解析错误', |             message: '过程数据接口解析错误', | ||||||
|             duration: 3000 |             duration: 3000 | ||||||
|  | |||||||
| @ -9,7 +9,6 @@ | |||||||
|     "pages/TerminalInfos", |     "pages/TerminalInfos", | ||||||
|     "pages/VideoConfig", |     "pages/VideoConfig", | ||||||
|     "pages/SignDisplay", |     "pages/SignDisplay", | ||||||
|     "pages/RealTime", |  | ||||||
|     "pages/Roads", |     "pages/Roads", | ||||||
|     "pages/Judge" |     "pages/Judge" | ||||||
| 
 | 
 | ||||||
|  | |||||||
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_01.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_01.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_02.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_02.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_03.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_03.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_04.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_04.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_05.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_05.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_06.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_06.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_101.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_101.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_102.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_102.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_103.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_103.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_104.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_104.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_105.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_105.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_106.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_106.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_107.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_107.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_41.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_41.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_42.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_42.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_43.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/10_43.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_01.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_01.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_02.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_02.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_03.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_03.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_04.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_04.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_05.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_05.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_06.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_06.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_07.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_07.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_08.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_08.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_09.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_09.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_10.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_10.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_101.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_101.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_102.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_102.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_41.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_41.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_42.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_42.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_43.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_43.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_44.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/11_44.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_01.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_01.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_02.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_02.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_04.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_04.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_101.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_101.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_102.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_102.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_103.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_103.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_104.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_104.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_41.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_41.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_42.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_42.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_44.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_44.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_45.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_45.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_46.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/12_46.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_01.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_01.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_02.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_02.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_03.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_03.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_04.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_04.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_05.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_05.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_06.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_06.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_08.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_08.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_09.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_09.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_101.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_101.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_102.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_102.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_103.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/13_103.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_01.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_01.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_02.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_02.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_66.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_66.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_67.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_67.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_68.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_68.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_71.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_71.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_72.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_72.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_82.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_82.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_90.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_90.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_91.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/14_91.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_01.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_01.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_02.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_02.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_03.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_03.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_04.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_04.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_05.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_05.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_06.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_06.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_101.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_101.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_102.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_102.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_103.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_103.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_41.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_41.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_42.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_42.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_43.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_43.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_44.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_44.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_45.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/15_45.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_01.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_01.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_02.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_02.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_03.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_03.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_04.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_04.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_06.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_06.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_101.mp3
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								entry/src/main/resources/rawfile/voice/16_101.mp3
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user