mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 07:21:50 +08:00
Add debugging user interface
This commit is contained in:
parent
e2de2ff821
commit
04473acb74
77
public/src/css/debug.css
Normal file
77
public/src/css/debug.css
Normal file
@ -0,0 +1,77 @@
|
||||
#debug{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 180px;
|
||||
height: 160px;
|
||||
background: #fff;
|
||||
border: 1px solid #333;
|
||||
color: #000;
|
||||
z-index: 50;
|
||||
font-size: 14px;
|
||||
font-family: TnT, Meiryo, sans-serif;
|
||||
}
|
||||
|
||||
#debug .title{
|
||||
position: relative;
|
||||
height: 25px;
|
||||
padding: 5px 0 0 5px;
|
||||
box-sizing: border-box;
|
||||
background: #bbb;
|
||||
color: #fff;
|
||||
cursor: default;
|
||||
z-index: 1
|
||||
}
|
||||
|
||||
#debug .title::before{
|
||||
left: auto;
|
||||
-webkit-text-stroke: 0.25em #555;
|
||||
}
|
||||
|
||||
#debug .minimise{
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 3px;
|
||||
width: 19px;
|
||||
height: 19px;
|
||||
background: #d77;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#debug .content{
|
||||
height: calc(100% - 25px);
|
||||
overflow-y: auto;
|
||||
padding: 8px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#debug .input-slider{
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
margin: 5px 0;
|
||||
}
|
||||
#debug .input-slider>input{
|
||||
width: 70%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
font-size: 18px;
|
||||
font-family: monospace;
|
||||
padding: 2px 4px;
|
||||
text-align: center;
|
||||
}
|
||||
#debug .input-slider>span{
|
||||
display: block;
|
||||
width: 10%;
|
||||
height: 100%;
|
||||
opacity: 0.8;
|
||||
background: #666;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
line-height: 2em;
|
||||
cursor: pointer;
|
||||
}
|
||||
#debug .input-slider>span:hover{
|
||||
opacity: 1;
|
||||
background: #333;
|
||||
}
|
@ -124,7 +124,8 @@ var assets = {
|
||||
"songselect.html",
|
||||
"titlescreen.html",
|
||||
"tutorial.html",
|
||||
"about.html"
|
||||
"about.html",
|
||||
"debug.html"
|
||||
],
|
||||
|
||||
"songs": [],
|
||||
|
@ -3,10 +3,12 @@ class Circle{
|
||||
// id, ms, type, text, speed, endTime, requiredHits
|
||||
this.id = config.id
|
||||
this.ms = config.start
|
||||
this.originalMS = this.ms
|
||||
this.type = config.type
|
||||
this.text = config.txt
|
||||
this.speed = config.speed
|
||||
this.endTime = config.endTime || this.ms
|
||||
this.originalEndTime = this.endTime
|
||||
this.isPlayed = 0
|
||||
this.animating = false
|
||||
this.animT = 0
|
||||
|
@ -38,6 +38,12 @@ class Controller{
|
||||
syncWith.startDate = this.game.startDate
|
||||
this.syncWith = syncWith
|
||||
}
|
||||
if(this.multiplayer !== 2){
|
||||
debugObj.controller = this
|
||||
if(debugObj.debug){
|
||||
debugObj.debug.updateStatus()
|
||||
}
|
||||
}
|
||||
}
|
||||
loadUIEvents(){
|
||||
this.pauseMenu = document.getElementById("pause-menu")
|
||||
@ -217,5 +223,12 @@ class Controller{
|
||||
delete this.restartBtn
|
||||
pageEvents.remove(this.songSelBtn, ["click", "touchend"])
|
||||
delete this.songSelBtn
|
||||
|
||||
if(this.multiplayer !== 2){
|
||||
debugObj.controller = null
|
||||
if(debugObj.debug){
|
||||
debugObj.debug.updateStatus()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
211
public/src/js/debug.js
Normal file
211
public/src/js/debug.js
Normal file
@ -0,0 +1,211 @@
|
||||
class Debug{
|
||||
constructor(){
|
||||
this.debugDiv = document.createElement("div")
|
||||
this.debugDiv.id = "debug"
|
||||
this.debugDiv.innerHTML = assets.pages["debug"]
|
||||
document.body.appendChild(this.debugDiv)
|
||||
|
||||
this.titleDiv = this.debugDiv.getElementsByClassName("title")[0]
|
||||
this.minimiseDiv = this.debugDiv.getElementsByClassName("minimise")[0]
|
||||
this.offsetDiv = this.debugDiv.getElementsByClassName("offset")[0]
|
||||
|
||||
this.moving = false
|
||||
pageEvents.add(window, ["mousedown", "mouseup", "blur"], this.stopMove.bind(this))
|
||||
pageEvents.add(window, "mousemove", this.onMove.bind(this))
|
||||
pageEvents.add(this.titleDiv, "mousedown", this.startMove.bind(this))
|
||||
pageEvents.add(this.minimiseDiv, "click", this.minimise.bind(this))
|
||||
|
||||
this.offsetSlider = new InputSlider(this.offsetDiv)
|
||||
this.offsetSlider.onchange(this.offsetChange.bind(this))
|
||||
|
||||
this.moveTo(100, 100)
|
||||
this.restore()
|
||||
this.updateStatus()
|
||||
}
|
||||
startMove(event){
|
||||
if(event.which === 1){
|
||||
event.stopPropagation()
|
||||
this.moving = {
|
||||
x: event.offsetX,
|
||||
y: event.offsetY
|
||||
}
|
||||
}
|
||||
}
|
||||
onMove(event){
|
||||
if(this.moving){
|
||||
var x = event.clientX - this.moving.x
|
||||
var y = event.clientY - this.moving.y
|
||||
this.moveTo(x, y)
|
||||
}
|
||||
}
|
||||
stopMove(event){
|
||||
var x = event.clientX - this.moving.x
|
||||
var y = event.clientY - this.moving.y
|
||||
var w = this.debugDiv.offsetWidth
|
||||
var h = this.debugDiv.offsetHeight
|
||||
if(x + w > innerWidth){
|
||||
x = innerWidth - w
|
||||
}
|
||||
if(y + h > lastHeight){
|
||||
y = lastHeight - h
|
||||
}
|
||||
if(x < 0){
|
||||
x = 0
|
||||
}
|
||||
if(y < 0){
|
||||
y = 0
|
||||
}
|
||||
this.moveTo(x, y)
|
||||
this.moving = false
|
||||
}
|
||||
moveTo(x, y){
|
||||
this.debugDiv.style.transform = "translate(" + x + "px, " + y + "px)"
|
||||
}
|
||||
restore(){
|
||||
debugObj.state = "open"
|
||||
this.debugDiv.style.display = ""
|
||||
}
|
||||
minimise(){
|
||||
debugObj.state = "minimised"
|
||||
this.debugDiv.style.display = "none"
|
||||
}
|
||||
updateStatus(){
|
||||
if(debugObj.controller && !this.controller){
|
||||
this.controller = debugObj.controller
|
||||
var selectedSong = this.controller.selectedSong
|
||||
this.defaultOffset = selectedSong.offset
|
||||
if(this.songFolder === selectedSong.folder){
|
||||
this.offsetChange(this.offsetSlider.get())
|
||||
}else{
|
||||
this.songFolder = selectedSong.folder
|
||||
this.offsetSlider.set(this.defaultOffset)
|
||||
}
|
||||
}
|
||||
if(this.controller && !debugObj.controller){
|
||||
this.controller = null
|
||||
}
|
||||
}
|
||||
offsetChange(value){
|
||||
if(this.controller){
|
||||
var offset = (this.defaultOffset - value) * 1000
|
||||
var songData = this.controller.parsedSongData
|
||||
songData.circles.forEach(circle => {
|
||||
circle.ms = circle.originalMS + offset
|
||||
circle.endTime = circle.originalEndTime + offset
|
||||
})
|
||||
songData.measures.forEach(measure => {
|
||||
measure.ms = measure.originalMS + offset
|
||||
})
|
||||
}
|
||||
}
|
||||
clean(){
|
||||
this.offsetSlider.clean()
|
||||
|
||||
pageEvents.remove(window, ["mousedown", "mouseup", "mousemove", "blur"])
|
||||
pageEvents.remove(this.title, "mousedown")
|
||||
|
||||
delete this.debugDiv
|
||||
delete this.titleDiv
|
||||
delete this.minimiseDiv
|
||||
delete this.controller
|
||||
|
||||
debugObj.state = "closed"
|
||||
debugObj.debug = null
|
||||
document.body.removeChild(this.debugDiv)
|
||||
}
|
||||
}
|
||||
class InputSlider{
|
||||
constructor(sliderDiv){
|
||||
this.input = sliderDiv.getElementsByTagName("input")[0]
|
||||
this.reset = sliderDiv.getElementsByClassName("reset")[0]
|
||||
this.plus = sliderDiv.getElementsByClassName("plus")[0]
|
||||
this.minus = sliderDiv.getElementsByClassName("minus")[0]
|
||||
this.value = null
|
||||
this.defaultValue = null
|
||||
this.callbacks = []
|
||||
|
||||
pageEvents.add(this.plus, "click", this.add.bind(this))
|
||||
pageEvents.add(this.minus, "click", this.subtract.bind(this))
|
||||
pageEvents.add(this.reset, "click", this.resetValue.bind(this))
|
||||
pageEvents.add(this.input, "change", this.manualSet.bind(this))
|
||||
}
|
||||
update(noCallback, force){
|
||||
var oldValue = this.input.value
|
||||
if(this.value === null){
|
||||
this.input.value = ""
|
||||
this.input.readOnly = true
|
||||
}else{
|
||||
if(this.value > 60000){
|
||||
this.value = 60000
|
||||
}
|
||||
if(this.value < -60000){
|
||||
this.value = -60000
|
||||
}
|
||||
this.input.value = this.get().toFixed(3)
|
||||
this.input.readOnly = false
|
||||
}
|
||||
if(force || !noCallback && oldValue !== this.input.value){
|
||||
this.callbacks.forEach(callback => {
|
||||
callback(this.input.value)
|
||||
})
|
||||
}
|
||||
}
|
||||
set(number){
|
||||
this.value = Math.floor(number * 1000)
|
||||
this.defaultValue = this.value
|
||||
this.update(true)
|
||||
}
|
||||
get(){
|
||||
if(this.value === null){
|
||||
return null
|
||||
}else{
|
||||
return Math.floor(this.value) / 1000
|
||||
}
|
||||
}
|
||||
add(event){
|
||||
if(this.value !== null){
|
||||
var newValue = this.value + this.eventNumber(event)
|
||||
if(newValue <= 60000){
|
||||
this.value = newValue
|
||||
this.update()
|
||||
}
|
||||
}
|
||||
}
|
||||
subtract(event){
|
||||
if(this.value !== null){
|
||||
var newValue = this.value - this.eventNumber(event)
|
||||
if(newValue >= -60000){
|
||||
this.value = newValue
|
||||
this.update()
|
||||
}
|
||||
}
|
||||
}
|
||||
eventNumber(event){
|
||||
return (event.ctrlKey ? 10 : 1) * (event.shiftKey ? 10 : 1) * (event.altKey ? 10 : 1) * 1
|
||||
}
|
||||
resetValue(){
|
||||
this.value = this.defaultValue
|
||||
this.update()
|
||||
}
|
||||
onchange(callback){
|
||||
this.callbacks.push(callback)
|
||||
}
|
||||
manualSet(){
|
||||
var number = parseFloat(this.input.value)
|
||||
if(Number.isFinite(number) && -60 <= number && number <= 60){
|
||||
this.value = number * 1000
|
||||
}
|
||||
this.update(false, true)
|
||||
}
|
||||
clean(){
|
||||
pageEvents.remove(this.plus, "click")
|
||||
pageEvents.remove(this.minus, "click")
|
||||
pageEvents.remove(this.reset, "click")
|
||||
pageEvents.remove(this.input, "change")
|
||||
|
||||
delete this.input
|
||||
delete this.reset
|
||||
delete this.plus
|
||||
delete this.minus
|
||||
}
|
||||
}
|
@ -40,6 +40,19 @@ function resizeRoot(){
|
||||
}
|
||||
}
|
||||
|
||||
function debug(){
|
||||
if(debugObj.state === "open"){
|
||||
debugObj.debug.clean()
|
||||
return "Debug closed"
|
||||
}else if(debugObj.state === "minimised"){
|
||||
debugObj.debug.restore()
|
||||
return "Debug restored"
|
||||
}else{
|
||||
debugObj.debug = new Debug()
|
||||
return "Debug opened"
|
||||
}
|
||||
}
|
||||
|
||||
var root = document.documentElement
|
||||
var fullScreenSupported = "requestFullscreen" in root || "webkitRequestFullscreen" in root || "mozRequestFullScreen" in root
|
||||
|
||||
@ -49,6 +62,10 @@ var p2
|
||||
var disableBlur = false
|
||||
var cancelTouch = true
|
||||
var lastHeight
|
||||
var debugObj = {
|
||||
state: "closed",
|
||||
debug: null
|
||||
}
|
||||
var perf = {
|
||||
blur: 0,
|
||||
allImg: 0,
|
||||
|
@ -150,6 +150,7 @@ class ParseOsu{
|
||||
if(measureNumber === 0){
|
||||
measures.push({
|
||||
ms: start + this.offset,
|
||||
originalMS: start + this.offset,
|
||||
speed: this.timingPoints[i].sliderMultiplier
|
||||
})
|
||||
}
|
||||
|
@ -140,6 +140,7 @@
|
||||
}
|
||||
this.measures.push({
|
||||
ms: ms,
|
||||
originalMS: ms,
|
||||
speed: speed
|
||||
})
|
||||
if(firstMeasure){
|
||||
|
8
public/src/views/debug.html
Normal file
8
public/src/views/debug.html
Normal file
@ -0,0 +1,8 @@
|
||||
<div class="title stroke-sub" alt="Debug">Debug</div>
|
||||
<div class="minimise"></div>
|
||||
<div class="content">
|
||||
Offset:<br>
|
||||
<div class="offset input-slider">
|
||||
<span class="reset">x</span><input type="text" value="" readonly><span class="plus">+</span><span class="minus">-</span>
|
||||
</div>
|
||||
</div>
|
@ -21,6 +21,7 @@
|
||||
<link rel="stylesheet" href="/src/css/titlescreen.css?{{version.commit_short}}">
|
||||
<link rel="stylesheet" href="/src/css/loadsong.css?{{version.commit_short}}">
|
||||
<link rel="stylesheet" href="/src/css/game.css?{{version.commit_short}}">
|
||||
<link rel="stylesheet" href="/src/css/debug.css?{{version.commit_short}}">
|
||||
|
||||
<script src="/src/js/lib/fontdetect.min.js?{{version.commit_short}}"></script>
|
||||
|
||||
@ -52,6 +53,7 @@
|
||||
<script src="/src/js/canvascache.js?{{version.commit_short}}"></script>
|
||||
<script src="/src/js/parsetja.js?{{version.commit_short}}"></script>
|
||||
<script src="/src/js/about.js?{{version.commit_short}}"></script>
|
||||
<script src="/src/js/debug.js?{{version.commit_short}}"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
Loading…
Reference in New Issue
Block a user