vieux receive state change from admin
This commit is contained in:
parent
84ca690684
commit
33f643642a
1 changed files with 6 additions and 2 deletions
|
@ -2,10 +2,11 @@
|
|||
{
|
||||
"id" : string,
|
||||
"pos" : [lat : float, long : float],
|
||||
"vieux": bool,
|
||||
"state" : {
|
||||
"shown" : bool,
|
||||
"tracker" : bool,
|
||||
"npc" : bool
|
||||
"npc" : int
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -182,6 +183,7 @@ function default_team(team_id, valid) {
|
|||
state.tracker = false;
|
||||
state.npc = valid;
|
||||
equipe.state = state;
|
||||
equipe.vieux = valid == 1;
|
||||
equipe.pos = [0,0];
|
||||
equipe.id = team_id;
|
||||
return equipe;
|
||||
|
@ -261,7 +263,9 @@ io.on('connection', function(socket){
|
|||
|
||||
socket.on('setState', function(d){
|
||||
equipes[d.id].state = d.state;
|
||||
emit_update(d.id);//TODO update vieux
|
||||
emit_update(d.id);
|
||||
if(equipes[d.id].vieux)
|
||||
io.to(d.id).emit('newState', d.state);
|
||||
});
|
||||
|
||||
for(i in equipes){
|
||||
|
|
Loading…
Reference in a new issue