Examples of hraBezi()


Examples of cz.beranek.model.Hra.hraBezi()

      HashMap<String, String> zprava=new HashMap<String, String>();
     
      zprava.put("nick", s.getNick());
      zprava.put("idHrace",s.getUserId());
      //pokud hra uz bezi, tak pridej informaci o poradi hracu
      if(tmp.hraBezi()){
        zprava.put("poradiHrace",Integer.toString(tmp.getHraci().getPoradi(s.getUserId())));
      }
     
      JSONObject json=JSONObject.fromObject(zprava);
      pole.add(json.toString());
View Full Code Here

Examples of cz.beranek.model.Hra.hraBezi()

  @RequestMapping("/_ah/channel/disconnected/")
  public void odhlaseni(Model model, @RequestParam("hra") String hraId,@ModelAttribute("userId") String userId){
    System.out.println("odpojen");
    Hra hr = SpravceHer.getInstance().getHra(hraId);
    Hrac hrac=hr.getHrac(userId);
    if(hr.hraBezi()) Zpravy.odesliVsemZpravu(hr, "Hr�� "+hrac.getNick()+" se odpojil.");
  }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.