PretendYoureXyzzy/WebContent/game.jsp

389 lines
16 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8" ?>
<%--
Copyright (c) 2012, Andy Janata
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other materials provided
with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--%>
2012-02-06 22:00:24 +00:00
<%--
The main game page. This is almost entirely static HTML, other than ensuring that a session is
created for the user now.
@author Andy Janata (ajanata@socialgamer.net)
--%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ page import="javax.servlet.http.HttpSession" %>
<%
// Ensure a session exists for the user.
@SuppressWarnings("unused")
HttpSession hSession = request.getSession(true);
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Pretend You're Xyzzy</title>
<script type="text/javascript" src="js/jquery-1.8.2.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/QTransform.js"></script>
<script type="text/javascript" src="js/jquery-ui.js"></script>
<script type="text/javascript" src="js/cah.js"></script>
<script type="text/javascript" src="js/cah.config.js"></script>
<%-- cah must be first, ajax must be before app. app probably has to be last. --%>
<%-- TODO make this be dynamic with looking at the filesystem and using jquery --%>
<%-- except that is nontrivial thanks to dependency ordering -_- --%>
<script type="text/javascript" src="js/cah.constants.js"></script>
<script type="text/javascript" src="js/cah.log.js"></script>
<script type="text/javascript" src="js/cah.gamelist.js"></script>
<script type="text/javascript" src="js/cah.card.js"></script>
<script type="text/javascript" src="js/cah.cardset.js"></script>
<script type="text/javascript" src="js/cah.game.js"></script>
<script type="text/javascript" src="js/cah.longpoll.js"></script>
<script type="text/javascript" src="js/cah.longpoll.handlers.js"></script>
<script type="text/javascript" src="js/cah.ajax.js"></script>
<script type="text/javascript" src="js/cah.ajax.builder.js"></script>
<script type="text/javascript" src="js/cah.ajax.handlers.js"></script>
<script type="text/javascript" src="js/cah.app.js"></script>
<link rel="stylesheet" type="text/css" href="cah.css" media="screen" />
<link rel="stylesheet" type="text/css" href="jquery-ui.css" media="screen" />
<jsp:include page="analytics.jsp" />
</head>
<body>
<%--
<div id="browser" class="hide">
<div id="browser_inner">
<p>Pretend You're Xyzzy is known to have graphical glitches in
<span id="browser_name">$BROWSER_NAME</span>. The game should work,
but it looks much better in <a href="http://google.com/chrome/">Google Chrome.</a></p>
<p>We will not bug you about this again after you dismiss this dialog.</p>
<input type="button" id="browser_ok" value="Okay, I Understand" />
</div>
</div>
--%>
<div id="welcome">
<h1 tabindex="0">
Pretend You're <dfn style="border-bottom: 1px dotted black"
title="Xyzzy is an Artificial Unintelligence bot. You'll be making more sense than him in this game.">
Xyzzy</dfn>
</h1>
<h3>A <a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a> clone.</h3>
<p>
This webapp is still in development. There will be bugs, but hopefully they won't affect gameplay
very much. To assist with development, <strong>all traffic on this server <em>may</em> be
logged.</strong>
</p>
<p>
If this is your first time playing, you may wish to read <a href="/">the changelog and list of
2013-03-30 15:10:10 +00:00
known issues</a>.
</p>
2013-04-28 07:22:52 +01:00
<p tabindex="0">Most recent update: 28 April 2013:</p>
<ul>
2013-04-28 07:22:52 +01:00
<li tabindex="0">Version 1.3 of the base Cards Against Humanity game.</li>
<li tabindex="0">Card sets are grouped by official or custom.</li>
<li tabindex="0">You can <a href="viewcards.jsp">view all of the cards in the game</a>,
including searching by text and filtering card set.</li>
</ul>
<div id="nickbox">
Nickname:
<input type="text" id="nickname" value="" maxlength="30" role="textbox"
aria-label="Enter your nickname." />
<input type="button" id="nicknameconfirm" value="Set" />
<span id="nickbox_error" class="error"></span>
</div>
<p>
Pretend You're Xyzzy is a Cards Against Humanity clone, which is available at
<a href="http://www.cardsagainsthumanity.com/">cardsagainsthumanity.com</a>, where you can buy it
or download and print it out yourself. It is distributed under a
<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons - Attribution -
Noncommercial - Share Alike license</a>. This web version is in no way endorsed or sponsored by
cardsagainsthumanity.com. You may download the source code to this version from
<a href="https://github.com/ajanata/PretendYoureXyzzy">GitHub</a>. For full license
information, including information about included libraries, see the
<a href="license.html">full license information</a>.
</p>
</div>
<div id="canvas" class="hide">
<div id="menubar">
<div id="menubar_left">
<input type="button" id="refresh_games" class="hide" value="Refresh Games" />
<input type="button" id="create_game" class="hide" value="Create Game" />
<input type="button" id="leave_game" class="hide" value="Leave Game" />
<input type="button" id="start_game" class="hide" value="Start Game" />
</div>
<div id="menubar_right">
Current timer duration: <span id="current_timer">0</span> seconds
2013-04-28 07:22:52 +01:00
<input type="button" id="view_cards" value="View Cards"
title="Open a new window to view all cards in the game."
onclick="window.open('viewcards.jsp', 'viewcards');" />
<input type="button" id="logout" value="Log out" />
</div>
</div>
<div id="main">
<div id="game_list" class="hide">
</div>
<div id="main_holder">
</div>
</div>
</div>
<div id="bottom" class="hide">
<div id="info_area">
</div>
<div id="tabs">
<ul>
<li><a href="#tab-preferences" class="tab-button">User Preferences</a></li>
<li><a href="#tab-global" class="tab-button" id="button-global">Global Chat</a></li>
</ul>
<div id="tab-preferences">
<input type="button" value="Save" onclick="save_preferences();" />
<input type="button" value="Revert" onclick="load_preferences();" />
<label for="hide_connect_quit">Hide connect and quit events: </label>
<input type="checkbox" id="hide_connect_quit" />
<br />
<label for="ignore_list">Chat ignore list, one name per line:</label>
<br/>
<textarea id="ignore_list" style="width: 200px; height: 150px"></textarea>
</div>
<div id="tab-global">
<div class="log"></div>
<input type="text" class="chat" maxlength="200" aria-label="Type here to chat." />
<input type="button" class="chat_submit" value="Chat" />
</div>
</div>
</div>
<!-- Template for game lobbies in the game list. -->
<div class="hide">
<div id="gamelist_lobby_template" class="gamelist_lobby" tabindex="0">
<div class="gamelist_lobby_left">
<h3>
<span class="gamelist_lobby_host">host</span>'s Game
(<span class="gamelist_lobby_player_count"></span>/<span class="gamelist_lobby_max_players"></span>)
<span class="gamelist_lobby_status">status</span>
</h3>
<div>
<strong>Players:</strong>
<span class="gamelist_lobby_players">host, player1, player2</span>
</div>
<div><strong>Goal:</strong> <span class="gamelist_lobby_goal"></span></div>
<div>
<strong>Cards:</strong> <span class="gamelist_lobby_cardset"></span>
</div>
<div class=hide>Game <span class="gamelist_lobby_id">###</span></div>
</div>
<div class="gamelist_lobby_right">
<input type="button" class="gamelist_lobby_join" value="Join" />
</div>
</div>
</div>
<!-- Template for face-up black cards. -->
<div class="hide">
<div id="black_up_template" class="card blackcard">
<span class="card_text">The quick brown fox jumped over the lazy dog.</span>
<div class="logo">
<div class="logo_1 logo_element">
</div>
<div class="logo_2 logo_element">
</div>
<div class="logo_3 logo_element watermark_container">
<br/>
<span class="watermark"></span>
</div>
<div class="logo_text">Pretend You're Xyzzy</div>
</div>
<div class="card_metadata">
<div class="draw hide">DRAW <div class="card_number"></div></div>
<div class="pick hide">PICK <div class="card_number"></div></div>
</div>
</div>
</div>
<!-- Template for face-down black cards. -->
<div class="hide">
<div id="black_down_template" class="card blackcard">
</div>
</div>
<!-- Template for face-up white cards. -->
<div class="hide">
<div id="white_up_template" class="card whitecard">
<span class="card_text" role="button" tabindex="0">The quick brown fox jumped over the lazy dog.</span>
<div class="logo">
<div class="logo_1 logo_element">
</div>
<div class="logo_2 logo_element">
</div>
<div class="logo_3 logo_element watermark_container">
<br/>
<span class="watermark"></span>
</div>
<div class="logo_text">Pretend You're Xyzzy</div>
</div>
</div>
</div>
<!-- Template for face-down white cards. -->
<div class="hide">
<div id="white_down_template" class="card whitecard">
</div>
</div>
<!-- Template for game lobbies. We have a holder here for designing only. -->
<div style="width: 1000px; height: 506px; border: 1px solid black; position: relative;"
class="hide">
<div id="game_template" class="game">
<div class="game_top">
<input type="button" class="game_show_last_round game_menu_bar" value="Show Last Round"
disabled="disabled" />
<input type="button" class="game_show_options game_menu_bar" value="Hide Game Options" />
<div class="game_message" role="status">
Waiting for server...
</div>
</div>
<div style="width:100%; height:472px;">
<div style="width:100%; height:100%;">
<div class="game_left_side">
<div class="game_black_card_wrapper">
<span tabindex="0">The black card for
<span class="game_black_card_round_indicator">this round is</span>:
</span>
<div class="game_black_card" tabindex="0">
</div>
</div>
<input type="button" class="confirm_card" value="Confirm Selection" />
</div>
<div class="game_options">
</div>
<div class="game_right_side hide">
<div class="game_right_side_box game_white_card_wrapper">
<span tabindex="0">The white cards played this round are:</span>
<div class="game_white_cards game_right_side_cards">
</div>
</div>
<div class="game_right_side_box game_last_round hide">
The previous round was won by <span class="game_last_round_winner"></span>.
<div class="game_last_round_cards game_right_side_cards">
</div>
</div>
</div>
</div>
<div class="game_hand">
<div class="game_hand_filter hide">
<span class="game_hand_filter_text"></span>
</div>
<span class="your_hand" tabindex="0">Your Hand</span>
<div class="game_hand_cards">
</div>
</div>
</div>
</div>
</div>
<!-- Template for scoreboard container. Holder for design. -->
<div style="height: 215px; border: 1px solid black;" class="hide">
<div id="scoreboard_template" class="scoreboard">
<div class="game_message" tabindex="0">Scoreboard</div>
</div>
</div>
<!-- Template for scoreboard score card. Holder for design. -->
<div class="scoreboard hide" style="height: 215px;">
<div id="scorecard_template" class="scorecard" tabindex="0">
<span class="scorecard_player">PlayerName</span>
<div class="clear"></div>
<span class="scorecard_score">0</span> <span class="scorecard_point_title">Awesome Point<span class="scorecard_s">s</span></span>
<span class="scorecard_status">Status</span>
</div>
</div>
<!-- Template for round card set binder. -->
<div class="hide">
<div id="game_white_cards_binder_template" class="game_white_cards_binder hide">
</div>
</div>
<!-- Previous round display. -->
<div class="hide">
<div id="previous_round_template" class="previous_round">
<input type="button" class="previous_round_close" value="Close" />
Round winner: <span class="previous_round_winner"></span>
<div class="previous_round_cards"></div>
</div>
</div>
<!-- Template for game options. -->
<div class="hide">
<div class="game_options" id="game_options_template">
<span class="options_host_only">Only the game host can change options.</span>
<br/><br/>
<fieldset>
<legend>Game options:</legend>
<label id="score_limit_template_label" for="score_limit_template">Score limit:</label>
<select id="score_limit_template" class="score_limit">
<% int defaultScoreLimit = 8; for (int i = 4; i <= 69; i++) { %>
<option <%= i == defaultScoreLimit ? "selected='selected' " : "" %>value="<%= i %>"><%= i %></option>
<% } %>
</select>
<br/>
<label id="player_limit_template_label" for="player_limit_template">Player limit:</label>
<select id="player_limit_template" class="player_limit"
aria-label="Player limit. Having more than 10 players may cause issues both for screen readers and traditional browsers.">
<% int defaultPlayerLimit = 10; for (int i = 3; i <= 20; i++) { %>
<option <%= i == defaultPlayerLimit ? "selected='selected' " : "" %>value="<%= i %>"><%= i %></option>
<% } %>
</select>
2012-08-21 06:39:06 +01:00
Having more than 10 players may get cramped!
<br/>
<input type="checkbox" checked="checked" id="use_timer_template" class="use_timer"
title="Players will be skipped if they have not played within a reasonable amount of time."
aria-label="Use idle timer. Players will be skipped if they have not played within a reasonable amount of time."/>
<label id="use_timer_template_label" for="use_timer_template"
title="Players will be skipped if they have not played within a reasonable amount of time.">
Use idle timer.
</label>
<br/>
<fieldset class="card_sets">
<legend>Card Sets</legend>
Select at least one of: <span class="base_card_sets"></span>
<br/>
Select any number of: <span class="extra_card_sets"></span>
</fieldset>
<br/>
<label id="game_password_template_label" for="game_password_template">Game password:</label>
<input type="text" id="game_password_template" class="game_password"
aria-label="Game password. You must tab outside of the box to apply the password."/>
<input type="password" id="game_fake_password_template" class="game_fake_password hide" />
<input type="checkbox" id="game_hide_password_template" class="game_hide_password" />
<label id="game_hide_password_template_label" for="game_hide_password_template"
aria-label="Hide password from your screen."
title="Hides the password from your screen, so people watching your stream can't see it.">
Hide password.
</label>
You must click outside the box to apply the password.
</fieldset>
</div>
</div>
<div style="position:absolute; left:-99999px" role="alert" id="aria-notifications"></div>
</body>
</html>