Merge pull request #108 from gnieark/dev

Dev
master
Gnieark 7 years ago committed by GitHub
commit 504e9cd782

@ -24,7 +24,7 @@ RUN cp /var/www/src/config.php.empty /var/www/src/config.php && \
chmod +x /populate_mysql.sh && \ chmod +x /populate_mysql.sh && \
chown -R www-data:www-data /var/www chown -R www-data:www-data /var/www
EXPOSE 80 3306 EXPOSE 80
ADD install.sql /install.sql ADD install.sql /install.sql
RUN rm /run.sh RUN rm /run.sh

@ -25,7 +25,9 @@ section{margin: 0 auto; width: 90%;}
article{float: right; width:70%;} article{float: right; width:70%;}
aside{float:left;width:29%;} aside{float:left;width:29%;}
.playerBox{} .playerBox{}
.playerBox input, .playerBox select {width:100%;} .playerBox em {width: 100%;}
.playerBox em label { width: 40%; text-align: right;}
.playerBox em input,.playerBox em input, .playerBox em select {width:59%; float:right;}
@ -42,6 +44,17 @@ function createElem(type,attributes){
{elem.setAttribute(i,attributes[i]);} {elem.setAttribute(i,attributes[i]);}
return elem; return elem;
} }
function makeid(){
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 5; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
function changeRandom(index,newValue){ function changeRandom(index,newValue){
if (newValue == "random" ){ if (newValue == "random" ){
document.getElementById("posX" + index).className = "hidden"; document.getElementById("posX" + index).className = "hidden";
@ -52,53 +65,121 @@ function changeRandom(index,newValue){
} }
} }
function changeTypePlayer(index,newValue){ function changeTypePlayer(index,newValue){
if (newValue == "Human") document.getElementById("botUrl" + index).className = "hidden"; if (newValue == "Human") document.getElementById("botUrl" + index).className = "hidden";
else document.getElementById("botUrl" + index).className = ""; else document.getElementById("botUrl" + index).className = "";
} }
function createPlayerForm(index){
var container = document.getElementById("playersSettings");
var divForm = createElem("div", {"id": "containerPlayer" + index,"class":"playerBox" } );
//Type of player function createElemWithLabel(type,attributes,labelTxt, id =''){
var select = createElem("select",{"id":"playerType" + index,"onchange":"changeTypePlayer('" + index + "', this.value);"}); /*
var optionHuman = createElem("option",{"value":"Human"}); * return an em element containing label and data like this:
optionHuman.innerHTML = "Human"; * <em id='kjhjk'>
var optionBot = createElem("option",{"value":"Bot"}); * <label for="plop"> the text of blah blah </label>
optionBot.innerHTML = "Bot"; * <input type='someType' value='kjhjlkh' id='plop'/>
* </em>
*/
if( id == ''){
var em = createElem ('em',{});
}else{
var em = createElem ('em',{'id':id});
}
select.appendChild(optionBot); if (typeof attributes['id'] !== 'undefined') {
select.appendChild(optionHuman); var forId = attributes['id'];
divForm.appendChild(select); }else{
var forId = makeid();
}
var label = createElem('label',{'for' : forId});
label.innerHTML = labelTxt;
em.appendChild(label);
var elem = createElem(type,attributes);
if (typeof attributes['id'] !== 'undefined') {
em.setAttribute('id',forId);
}
em.appendChild(elem);
return em;
//url }
var inputUrl = createElem("input", {"id":"botUrl" + index, "type": "text", "value":"", "placeholder":"http://Bot.url" }); function createLineSelect(labelTxt,arrayOptions,attributes){
divForm.appendChild(inputUrl); //attributes are the select 's attributes, not his container
var em = createElem('em',{});
if (typeof attributes['id'] !== 'undefined') {
var forId = attributes['id'];
}else{
var forId = makeid();
}
var label = createElem('label',{'for':forId});
label.innerHTML = labelTxt;
em.appendChild(label);
var select = createElem('select',attributes);
if (typeof attributes['id'] !== 'undefined') {
select.setAttribute('id',forId);
}
for(var i=0; i < arrayOptions.length; i++){
var option = createElem('option',{'value':arrayOptions[i]['value']});
option.innerHTML = arrayOptions[i]['text'];
select.appendChild(option);
}
em.appendChild(select);
return em;
}
function createPlayerForm(index){
var container = document.getElementById("playersSettings");
var divForm = createElem("div", {"id": "containerPlayer" + index,"class":"playerBox" } );
divForm.appendChild(
createLineSelect('Type:',
[ {'value':'bot','text' : 'bot'},
{'value':'human','text' : 'human'}
],
//Starting cell {"id":"playerType" + index,
var selectRandomStartCell = createElem("select",{ "onchange":"changeTypePlayer('" + index + "', this.value);"
}
)
);
divForm.appendChild(
createElemWithLabel(
'input',
{
"id":"botUrl" + index, "type": "text", "value":"",
"placeholder":"http://Bot.url"
},
'URL du Bot'
)
);
divForm.appendChild(
createLineSelect('Starting cell:',
[ {'value':'random','text' : 'random'},
{'value':'defined','text' : 'Let me define it'}
],
{
"id": "randomOrNot" + index, "id": "randomOrNot" + index,
"onchange":"changeRandom('" + index + "', this.value);" "onchange":"changeRandom('" + index + "', this.value);"
}); }
)
var optionRandom = createElem("option",{"value":"random","selected":"selected"}); );
optionRandom.innerHTML = "random"; divForm.appendChild(
createElemWithLabel(
var optionDefined = createElem("option",{"value":"defined"}); 'input',
optionDefined.innerHTML = "Let me define it"; {"type":"text","value": "0","id":"posX" + index},
selectRandomStartCell.appendChild(optionRandom); 'X coord:'
selectRandomStartCell.appendChild(optionDefined); )
);
divForm.appendChild(selectRandomStartCell); divForm.appendChild(
createElemWithLabel(
var inputX = createElem("input",{"type":"text","value": "0","id":"posX" + index,"class":"hidden"}); 'input',
var inputY = createElem("input",{"type":"text","value": "0","id":"posY" + index,"class":"hidden"}); {"type":"text","value": "0","id":"posY" + index},
'Y coord:'
divForm.appendChild(inputX); )
divForm.appendChild(inputY); );
container.appendChild(divForm); container.appendChild(divForm);

Loading…
Cancel
Save