/* * The MIT License (MIT) * * Copyright (c) 2015 Ziver Koc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package zutil.net.http; import java.io.IOException; import java.util.Map; public class HTTPGuessTheNumber implements HttpPage{ public static void main(String[] args) throws IOException{ //HttpServer server = new HttpServer("localhost", 443, FileFinder.find("keySSL"), "rootroot");//SSL HttpServer server = new HttpServer(8080); server.setDefaultPage(new HTTPGuessTheNumber()); server.run(); } public void respond(HttpPrintStream out, HttpHeader client_info, Map session, Map cookie, Map request) throws IOException { out.enableBuffering(true); out.println(""); out.println("

Welcome To The Number Guess Game!

"); if(session.containsKey("random_nummber") && request.containsKey("guess") && !request.get("guess").isEmpty()){ int guess = Integer.parseInt(request.get("guess")); int nummber = (Integer)session.get("random_nummber"); try { if(guess == nummber){ session.remove("random_nummber"); out.println("You Guessed Right! Congrats!"); out.println(""); return; } else if(guess > nummber){ out.println("To High
"); if(Integer.parseInt(cookie.get("high")) > guess){ out.setCookie("high", ""+guess); cookie.put("high", ""+guess); } } else{ out.println("To Low
"); if(Integer.parseInt(cookie.get("low")) < guess){ out.setCookie("low", ""+guess); cookie.put("low", ""+guess); } } } catch (Exception e) { e.printStackTrace(); } } else{ session.put("random_nummber", (int)(Math.random()*99+1)); try { out.setCookie("low", "0"); out.setCookie("high", "100"); cookie.put("low", "0"); cookie.put("high", "100"); } catch (Exception e) { e.printStackTrace(); } } out.println("
"); out.println(cookie.get("low")+" < X < "+cookie.get("high")+"
"); out.println("Guess a number between 0 and 100:
"); out.println(""); out.println(""); out.println(""); out.println("
"); out.println(""); out.println("DEBUG: nummber="+session.get("random_nummber")+"
"); out.println(""); } }