2012-02-06 22:00:24 +00:00
|
|
|
/*
|
2012-02-02 22:47:23 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-12-23 02:48:20 +00:00
|
|
|
/**
|
2012-03-15 17:14:32 +00:00
|
|
|
* Main application for Pretend You're Xyzzy. This only has to handle the initial nickname
|
2012-02-06 22:00:24 +00:00
|
|
|
* registration, the chat box, the logout button, and resizing the window. It should probably be
|
|
|
|
* split up into multiple files.
|
2011-12-23 02:48:20 +00:00
|
|
|
*
|
2012-02-06 22:00:24 +00:00
|
|
|
* @author Andy Janata (ajanata@socialgamer.net)
|
2011-12-23 02:48:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
2012-12-28 03:33:27 +00:00
|
|
|
// Initialize the logger (i.e. the global chat tab) before anything needs it.
|
|
|
|
cah.log.init();
|
|
|
|
|
2011-12-25 03:37:45 +00:00
|
|
|
// see if we already exist on the server so we can resume
|
2012-01-13 04:05:39 +00:00
|
|
|
cah.Ajax.build(cah.$.AjaxOperation.FIRST_LOAD).run();
|
2011-12-25 03:37:45 +00:00
|
|
|
|
2012-10-12 05:18:40 +01:00
|
|
|
if ($.cookie("nickname")) {
|
|
|
|
$("#nickname").val($.cookie("nickname"));
|
|
|
|
}
|
2011-12-23 02:48:20 +00:00
|
|
|
$("#nicknameconfirm").click(nicknameconfirm_click);
|
|
|
|
$("#nickbox").keyup(nickbox_keyup);
|
|
|
|
$("#nickbox").focus();
|
2011-12-25 03:37:45 +00:00
|
|
|
|
2013-02-25 02:47:05 +00:00
|
|
|
$(".chat", $("#tab-global")).keyup(chat_keyup($(".chat_submit", $("#tab-global"))));
|
2012-12-29 22:21:37 +00:00
|
|
|
$(".chat_submit", $("#tab-global")).click(chatsubmit_click(null, $("#tab-global")));
|
2012-01-06 23:53:04 +00:00
|
|
|
|
|
|
|
// TODO: have some sort of mechanism to alert the server that we have unloaded the page, but
|
|
|
|
// have not expressed an interest in being cleared out yet.
|
|
|
|
// $(window).bind("beforeunload", window_beforeunload);
|
|
|
|
$("#logout").click(logout_click);
|
2012-10-16 04:23:37 +01:00
|
|
|
|
2012-10-12 05:18:40 +01:00
|
|
|
load_preferences();
|
2012-01-25 08:03:41 +00:00
|
|
|
|
2012-10-16 04:23:37 +01:00
|
|
|
$("#tabs").tabs();
|
|
|
|
$("#button-global").click();
|
|
|
|
|
2012-01-25 08:03:41 +00:00
|
|
|
if ($.browser.mozilla) {
|
|
|
|
// Firefox sucks.
|
|
|
|
$("body").css("font-size", "12px");
|
|
|
|
}
|
2012-01-30 08:35:27 +00:00
|
|
|
|
|
|
|
$(window).resize(app_resize);
|
|
|
|
app_resize();
|
2011-12-23 02:48:20 +00:00
|
|
|
});
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Handle a key up event in the nick box. If the key was enter, try to register with the server.
|
|
|
|
*
|
|
|
|
* @param {jQuery.Event}
|
|
|
|
* e
|
|
|
|
*/
|
2011-12-23 02:48:20 +00:00
|
|
|
function nickbox_keyup(e) {
|
|
|
|
if (e.which == 13) {
|
|
|
|
$("#nicknameconfirm").click();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Handle a click event on the set nickname box. Try to register with the server.
|
|
|
|
*/
|
|
|
|
function nicknameconfirm_click() {
|
2011-12-25 03:37:45 +00:00
|
|
|
var nickname = $.trim($("#nickname").val());
|
2012-10-12 05:18:40 +01:00
|
|
|
$.cookie("nickname", nickname, {
|
|
|
|
expires : 365
|
|
|
|
});
|
2012-01-13 04:05:39 +00:00
|
|
|
cah.Ajax.build(cah.$.AjaxOperation.REGISTER).withNickname(nickname).run();
|
2011-12-25 03:37:45 +00:00
|
|
|
}
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Handle a key up event in the chat box. If the key was enter, send the message to the server.
|
|
|
|
*
|
2013-02-25 02:47:05 +00:00
|
|
|
* @param {jQuery.HTMLButtonElement}
|
|
|
|
* submitButton Submit button for the chat box.
|
2012-02-06 22:00:24 +00:00
|
|
|
*/
|
2013-02-25 02:47:05 +00:00
|
|
|
function chat_keyup(submitButton) {
|
|
|
|
return function(e) {
|
|
|
|
if (e.which == 13) {
|
|
|
|
$(submitButton).click();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
};
|
2011-12-25 03:37:45 +00:00
|
|
|
}
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
2013-02-23 22:32:00 +00:00
|
|
|
* Generate a click handler for the chat submit button. This parses the line for any /-commands,
|
|
|
|
* then sends the request to the server.
|
|
|
|
*
|
2012-12-29 22:21:37 +00:00
|
|
|
* @param {number}
|
2013-02-23 22:32:00 +00:00
|
|
|
* game_id Game ID to use in AJAX requests, or null for global chat
|
2012-12-29 22:21:37 +00:00
|
|
|
* @param {jQuery.HTMLDivElement}
|
2013-02-23 22:32:00 +00:00
|
|
|
* parent_element Parent element, which contains one text-input-box element of class
|
2012-12-29 22:21:37 +00:00
|
|
|
* "chat", which will be used to source the data.
|
2012-02-06 22:00:24 +00:00
|
|
|
*/
|
2012-12-29 22:21:37 +00:00
|
|
|
function chatsubmit_click(game_id, parent_element) {
|
2012-12-29 21:58:19 +00:00
|
|
|
return function() {
|
2012-12-29 22:21:37 +00:00
|
|
|
var ajax = null;
|
|
|
|
|
|
|
|
var text = $.trim($(".chat", parent_element).val());
|
2012-12-29 21:58:19 +00:00
|
|
|
if (text == "") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var cmd = '';
|
|
|
|
if ('/' == text.substring(0, 1)) {
|
|
|
|
cmd = text.substring(1, text.indexOf(' ') >= 0 ? text.indexOf(' ') : undefined);
|
|
|
|
if (text.indexOf(' ') >= 0) {
|
|
|
|
text = text.substring(text.indexOf(' ') + 1);
|
|
|
|
} else {
|
|
|
|
text = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch (cmd) {
|
|
|
|
// TODO support an /ignore command
|
|
|
|
case '':
|
2013-02-25 02:47:05 +00:00
|
|
|
if (game_id != undefined) {
|
|
|
|
ajax = cah.Ajax.build(cah.$.AjaxOperation.GAME_CHAT).withGameId(game_id);
|
|
|
|
} else {
|
|
|
|
ajax = cah.Ajax.build(cah.$.AjaxOperation.CHAT);
|
|
|
|
}
|
|
|
|
ajax = ajax.withMessage(text);
|
2013-02-24 01:19:53 +00:00
|
|
|
cah.log.status_with_game(game_id, "<" + cah.nickname + "> " + text);
|
2012-12-29 21:58:19 +00:00
|
|
|
break;
|
|
|
|
case 'kick':
|
2012-12-29 22:21:37 +00:00
|
|
|
ajax = cah.Ajax.build(cah.$.AjaxOperation.KICK).withNickname(text.split(' ')[0]);
|
2012-12-29 21:58:19 +00:00
|
|
|
break;
|
|
|
|
case 'ban':
|
|
|
|
// this could also be an IP address
|
2012-12-29 22:21:37 +00:00
|
|
|
ajax = cah.Ajax.build(cah.$.AjaxOperation.BAN).withNickname(text.split(' ')[0]);
|
2012-12-29 21:58:19 +00:00
|
|
|
break;
|
|
|
|
case 'names':
|
2012-12-29 22:21:37 +00:00
|
|
|
ajax = cah.Ajax.build(cah.$.AjaxOperation.NAMES);
|
2012-12-29 21:58:19 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-08-21 06:41:06 +01:00
|
|
|
}
|
|
|
|
|
2012-12-29 22:21:37 +00:00
|
|
|
if (ajax) {
|
|
|
|
if (game_id !== null) {
|
|
|
|
ajax.withGameId(game_id);
|
|
|
|
}
|
|
|
|
ajax.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
$(".chat", parent_element).val("");
|
|
|
|
$(".chat", parent_element).focus();
|
2012-12-29 21:58:19 +00:00
|
|
|
};
|
2011-12-23 02:48:20 +00:00
|
|
|
}
|
2012-01-06 23:53:04 +00:00
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Handle a click event on the log out button. Tell the server to log us out.
|
|
|
|
*/
|
|
|
|
function logout_click() {
|
2012-03-15 20:50:24 +00:00
|
|
|
if (confirm("Are you sure you wish to log out?")) {
|
|
|
|
cah.Ajax.build(cah.$.AjaxOperation.LOG_OUT).run();
|
|
|
|
}
|
2012-01-06 23:53:04 +00:00
|
|
|
}
|
2012-01-30 08:35:27 +00:00
|
|
|
|
2012-10-12 05:18:40 +01:00
|
|
|
/**
|
|
|
|
* Handle a click event on the preferences button. Shows the preferences modal dialog.
|
|
|
|
*/
|
|
|
|
function preferences_click() {
|
|
|
|
$("#preferences_dialog").dialog({
|
|
|
|
modal : true,
|
|
|
|
buttons : {
|
|
|
|
Ok : function() {
|
|
|
|
save_preferences();
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function load_preferences() {
|
|
|
|
if ($.cookie("hide_connect_quit")) {
|
|
|
|
$("#hide_connect_quit").attr('checked', 'checked');
|
|
|
|
} else {
|
|
|
|
$("#hide_connect_quit").removeAttr('checked');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($.cookie("ignore_list")) {
|
|
|
|
$("#ignore_list").val($.cookie("ignore_list"));
|
|
|
|
} else {
|
|
|
|
$("#ignore_list").val("");
|
|
|
|
}
|
|
|
|
|
|
|
|
apply_preferences();
|
|
|
|
}
|
|
|
|
|
|
|
|
function save_preferences() {
|
|
|
|
if ($("#hide_connect_quit").attr("checked")) {
|
|
|
|
$.cookie("hide_connect_quit", true, {
|
|
|
|
expires : 365
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$.removeCookie("hide_connect_quit");
|
|
|
|
}
|
|
|
|
|
|
|
|
$.cookie("ignore_list", $("#ignore_list").val(), {
|
|
|
|
expires : 365
|
|
|
|
});
|
|
|
|
|
|
|
|
apply_preferences();
|
|
|
|
}
|
|
|
|
|
|
|
|
function apply_preferences() {
|
|
|
|
cah.hideConnectQuit = !!$("#hide_connect_quit").attr("checked");
|
|
|
|
|
|
|
|
cah.ignoreList = {};
|
|
|
|
$($('#ignore_list').val().split('\n')).each(function() {
|
|
|
|
cah.ignoreList[this] = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Handle a window resize event. Resize the chat and info areas to fit vertically and horizontally.
|
|
|
|
* This was tested extensively in Chrome. It may not be pixel-perfect in other browsers.
|
|
|
|
*/
|
2012-01-30 08:35:27 +00:00
|
|
|
function app_resize() {
|
2012-12-28 03:33:27 +00:00
|
|
|
var chat = $(".chat", $("#tab-global"));
|
|
|
|
var log = cah.log.log;
|
|
|
|
|
2012-10-16 04:23:37 +01:00
|
|
|
var chatWidth = $("#canvas").width() - 257;
|
|
|
|
$("#tabs").width(chatWidth + 'px');
|
|
|
|
var bottomHeight = $(window).height() - $("#main").height() - $("#menubar").height() - 29;
|
2012-01-30 08:35:27 +00:00
|
|
|
$("#bottom").height(bottomHeight);
|
|
|
|
$("#info_area").height(bottomHeight);
|
2012-10-16 04:23:37 +01:00
|
|
|
$("#tabs").height(bottomHeight);
|
2013-02-23 22:32:00 +00:00
|
|
|
|
|
|
|
// global chat
|
|
|
|
do_app_resize(chat, log);
|
|
|
|
// per-game chats
|
|
|
|
for ( var id in cah.currentGames) {
|
|
|
|
chat = $(".chat", $("#tab-chat-game_" + id));
|
|
|
|
log = $(".log", $("#tab-chat-game_" + id));
|
|
|
|
do_app_resize(chat, log);
|
|
|
|
}
|
|
|
|
|
2012-01-30 08:35:27 +00:00
|
|
|
// this is ugly and terrible.
|
|
|
|
if ($(window).height() < 650) {
|
|
|
|
$("body").css("overflow-y", "auto");
|
|
|
|
} else {
|
|
|
|
$("body").css("overflow-y", "hidden");
|
|
|
|
}
|
|
|
|
}
|
2013-02-23 22:32:00 +00:00
|
|
|
|
|
|
|
function do_app_resize(chatElement, logElement) {
|
|
|
|
var chatWidth = $("#canvas").width() - 257;
|
|
|
|
logElement.width((chatWidth + 2) + 'px');
|
|
|
|
chatElement.width((chatWidth - 42) + 'px');
|
|
|
|
var bottomHeight = $(window).height() - $("#main").height() - $("#menubar").height() - 29;
|
|
|
|
logElement.height(bottomHeight - chatElement.height() - 40);
|
|
|
|
}
|