From fec38574354a2949c80720fba84c0fe2d5ac3fe0 Mon Sep 17 00:00:00 2001 From: lopar Date: Wed, 10 Mar 2021 23:05:38 +0200 Subject: [PATCH] Code clean --- js/ch.js | 18 ++-- js/sl2.js | 262 +++++++++++++++++++++++++++++++----------------------- 2 files changed, 159 insertions(+), 121 deletions(-) diff --git a/js/ch.js b/js/ch.js index 01675b9..897eb02 100644 --- a/js/ch.js +++ b/js/ch.js @@ -1,7 +1,8 @@ -//------------------------------------------------------------- +"use strict" // Функция для определения координат указателя мыши function defPosition(event) { - var x = y = 0; + let x = 0; + let y = 0; if (document.attachEvent != null) { // Internet Explorer & Opera x = window.event.clientX + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft); y = window.event.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop); @@ -16,7 +17,6 @@ function defPosition(event) { return {x:x, y:y}; } -var flagpop=0; var clip = new ZeroClipboard.Client(); clip.setHandCursor( true ); clip.setCSSEffects(true); @@ -30,12 +30,14 @@ var flagpop=0; * @return {boolean} */ function OpenMenu(evt,level){ + let flagpop = 0 + let login + let menu = document.getElementById("oMenu") + let html; evt = evt || window.event; evt.cancelBubble = true; // Показываем собственное контекстное меню - var menu = document.getElementById("oMenu"); - var html = ""; - login=(evt.target || evt.srcElement).innerHTML; + login = (evt.target || evt.srcElement).innerHTML; clip.setText(login); @@ -60,8 +62,8 @@ function OpenMenu(evt,level){ menu.style.left = defPosition(evt).x + "px"; menu.style.display = ""; } - if (flagpop==0){ - flagpop=1; + if (flagpop === 0){ + flagpop = 1; clip.glue( 'd_clip_button' ) } else diff --git a/js/sl2.js b/js/sl2.js index 5d637b5..e359cea 100644 --- a/js/sl2.js +++ b/js/sl2.js @@ -1,147 +1,183 @@ var Hint3Name = ''; -step=0; -function errmess(s) -{ - messid.innerHTML=''+s+''; - highlight(); -} -function highlight() -{ - if (step) return(0); - step=10; - setTimeout(dohi,50); +step = 0; + +function errmess(s) { + messid.innerHTML = '' + s + ''; + highlight(); } -function dohi() -{ - var hx=new Array(0,1,2,3,4,5,6,7,8,9,"A","B","C","D","E","F"); - - step--; - messid.style.color="#"+hx[Math.floor(15-step/2)]+((step&1)?"F":"8")+"0000"; - if (step>0) setTimeout(dohi,50); +function highlight() { + if (step) return (0); + step = 10; + setTimeout(dohi, 50); } -function fixspaces(s) -{ - while (s.substr(s.length-1,s.length)==" ") s=s.substr(0,s.length-1); - while (s.substr(0,1)==" ") s=s.substr(1,s.length); - return(s); +function dohi() { + let hx = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "A", "B", "C", "D", "E", "F"]; + + step--; + messid.style.color = "#" + hx[Math.floor(15 - step / 2)] + ((step & 1) ? "F" : "8") + "0000"; + if (step > 0) setTimeout(dohi, 50); +} + +function fixspaces(s) { + while (s.substr(s.length - 1, s.length) == " ") s = s.substr(0, s.length - 1); + while (s.substr(0, 1) == " ") s = s.substr(1, s.length); + return (s); } // Заголовок, название скрипта, имя поля с логином -function findlogin(title, script, name, defaultlogin) -{ - document.all("hint3").innerHTML = '
'+title+'x
'+ - '
'+ - 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
'; - document.all("hint3").style.visibility = "visible"; - document.all("hint3").style.left = 100; - document.all("hint3").style.top = 60; - document.all(name).focus(); - Hint3Name = name; +function findlogin(title, script, name1, defaultlogin) { + let hint3 = document.getElementById("hint3"); + hint3.innerHTML = ` + + + + + + + + +
+ ${title} + + + x +
+ + + + + + + + + + +
Укажите логин персонажа: + +
(можно щелкнуть по логину в чате) +
+ + + +
+
+ `; + /*document.all("hint3").innerHTML = '
' + title + 'x
' + + '
' + + 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
'; + */ + hint3.style.visibility = "visible"; + hint3.style.left = "100"; + hint3.style.top = "60"; + document.all(name1).focus(); + Hint3Name = name1; } // Для магии. Заголовок, название скрипта, название магии, номер вещицы в рюкзаке, логин по умолчанию, описание доп. поля -function magicklogin(title, script, magickname, n, defaultlogin, extparam) -{ - var s = '
'+title+'x
'+ - ''; - if (extparam != null && extparam != '') { - s = s + ''; - } - s = s + '
'+ - 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
'+extparam+'
'; - document.all("hint3").innerHTML = s; - document.all("hint3").style.visibility = "visible"; - document.all("hint3").style.left = 100; - document.all("hint3").style.top = document.body.scrollTop+50; - document.all("param").focus(); - Hint3Name = 'param'; +function magicklogin(title, script, magickname, n, defaultlogin, extparam) { + var s = '
' + title + 'x
' + + ''; + if (extparam != null && extparam != '') { + s = s + ''; + } + s = s + '
' + + 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
' + extparam + '
'; + document.all("hint3").innerHTML = s; + document.all("hint3").style.visibility = "visible"; + document.all("hint3").style.left = 100; + document.all("hint3").style.top = document.body.scrollTop + 50; + document.all("param").focus(); + Hint3Name = 'param'; } // Магия function UseMagick(title, script, name, extparam, n, extparam2) { - if ((extparam != null)&&(extparam != '')) { + if ((extparam != null) && (extparam != '')) { - var t1='text',t2='text'; + var t1 = 'text', t2 = 'text'; - if (extparam.substr(0,1) == "!") - { - t1='password'; - extparam=extparam.substr(1,extparam.length); - } - var s = '
'+title+'x
'+ - ''; - if (extparam2 != null && extparam2 != '') { - if (extparam2.substr(0,1) == "!") - { - t2='password'; - extparam2=extparam2.substr(1,extparam2.length); - } - s = s + ''; - } - s = s + '
'+ - extparam + ':
  
'+extparam2+':
  
'; - document.all("hint3").innerHTML = s; - document.all("hint3").style.visibility = "visible"; - document.all("hint3").style.left = 100; - document.all("hint3").style.top = document.body.scrollTop+50; - document.all("param").focus(); - Hint3Name = 'param'; - } else { - if (confirm('Использовать сейчас?')) { location=script+'?use='+name+'&n='+n; } - } + if (extparam.substr(0, 1) == "!") { + t1 = 'password'; + extparam = extparam.substr(1, extparam.length); + } + var s = '
' + title + 'x
' + + ''; + if (extparam2 != null && extparam2 != '') { + if (extparam2.substr(0, 1) == "!") { + t2 = 'password'; + extparam2 = extparam2.substr(1, extparam2.length); + } + s = s + ''; + } + s = s + '
' + + extparam + ':
  
' + extparam2 + ':
  
'; + document.all("hint3").innerHTML = s; + document.all("hint3").style.visibility = "visible"; + document.all("hint3").style.left = 100; + document.all("hint3").style.top = document.body.scrollTop + 50; + document.all("param").focus(); + Hint3Name = 'param'; + } else { + if (confirm('Использовать сейчас?')) { + location = script + '?use=' + name + '&n=' + n; + } + } } // Закрывает окно ввода логина -function closehint3() -{ - document.all("hint3").style.visibility="hidden"; - Hint3Name=''; +function closehint3() { + document.all("hint3").style.visibility = "hidden"; + Hint3Name = ''; } // Для боевой магии. Заголовок, название магии, номер вещицы в рюкзаке -function Bmagicklogin(title, magickname, n) -{ - if (defend==false) - { - errmess("Блок не выбран."); - return false; - } +function Bmagicklogin(title, magickname, n) { + if (defend == false) { + errmess("Блок не выбран."); + return false; + } - document.all("hint3").innerHTML = '
'+title+'x
'+ - '
'+ - 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
'; - document.all("hint3").style.visibility = "visible"; - document.all("hint3").style.left = 100; - document.all("hint3").style.top = 60; - document.all("param").focus(); - Hint3Name = 'param'; + document.all("hint3").innerHTML = '
' + title + 'x
' + + '
' + + 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
'; + document.all("hint3").style.visibility = "visible"; + document.all("hint3").style.left = 100; + document.all("hint3").style.top = 60; + document.all("param").focus(); + Hint3Name = 'param'; } // Магия function BUseMagick(name, extparam, n) { - if (defend==false) - { - errmess("Блок не выбран."); - return false; - } + if (defend == false) { + errmess("Блок не выбран."); + return false; + } - if ((extparam != null)&&(extparam != '')) { - var s = prompt(extparam+':', ''); - if ((s != null)&&(s != '')) { - re = /\%/g; s=s.replace(re, "%25"); - re = /\+/g; s=s.replace(re, "%2B"); - re = /\#/g; s=s.replace(re, "%23"); - re = /\?/g; s=s.replace(re, "%3F"); - re = /\&/g; s=s.replace(re, "%26"); - window.location.href='/battle.pl?use='+name+'¶m='+s+'&n='+n+'&mdefend='+defend+'&enemy='+enemy+'&myid='+myid; + if ((extparam != null) && (extparam != '')) { + var s = prompt(extparam + ':', ''); + if ((s != null) && (s != '')) { + re = /\%/g; + s = s.replace(re, "%25"); + re = /\+/g; + s = s.replace(re, "%2B"); + re = /\#/g; + s = s.replace(re, "%23"); + re = /\?/g; + s = s.replace(re, "%3F"); + re = /\&/g; + s = s.replace(re, "%26"); + window.location.href = '/battle.pl?use=' + name + '¶m=' + s + '&n=' + n + '&mdefend=' + defend + '&enemy=' + enemy + '&myid=' + myid; - } - } else { - if (confirm('Использовать сейчас?')) { location='/battle.pl?use='+name+'&n='+n+'&mdefend='+defend+'&enemy='+enemy+'&myid='+myid;} - } + } + } else { + if (confirm('Использовать сейчас?')) { + location = '/battle.pl?use=' + name + '&n=' + n + '&mdefend=' + defend + '&enemy=' + enemy + '&myid=' + myid; + } + } }