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() {
|
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
|
|
|
|
2011-12-23 02:48:20 +00:00
|
|
|
// TODO see if we have a stored nickname somewhere
|
|
|
|
$("#nicknameconfirm").click(nicknameconfirm_click);
|
|
|
|
$("#nickbox").keyup(nickbox_keyup);
|
|
|
|
$("#nickbox").focus();
|
2011-12-25 03:37:45 +00:00
|
|
|
|
|
|
|
$("#chat").keyup(chat_keyup);
|
|
|
|
$("#chat_submit").click(chatsubmit_click);
|
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-01-24 03:14:29 +00:00
|
|
|
|
2012-01-24 07:04:14 +00:00
|
|
|
// if (($.browser.mozilla || $.browser.opera) && !$.cookie("browser_dismiss")) {
|
|
|
|
// var name = $.browser.mozilla ? "Firefox" : "Opera";
|
|
|
|
// $("#browser").show();
|
|
|
|
// $("#browser_name").text(name);
|
|
|
|
// $("#browser_ok").click(function() {
|
|
|
|
// $("#browser").hide();
|
|
|
|
// $.cookie("browser_dismiss", true, {
|
|
|
|
// expires : 3650,
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// }
|
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-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.
|
|
|
|
*
|
|
|
|
* @param {jQuery.Event}
|
|
|
|
* e
|
|
|
|
*/
|
2011-12-25 03:37:45 +00:00
|
|
|
function chat_keyup(e) {
|
|
|
|
if (e.which == 13) {
|
|
|
|
$("#chat_submit").click();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Handle a click even on the chat button. Send the message to the server.
|
|
|
|
*/
|
|
|
|
function chatsubmit_click() {
|
2011-12-25 03:37:45 +00:00
|
|
|
var text = $.trim($("#chat").val());
|
2012-03-13 02:49:36 +00:00
|
|
|
if (text == "") {
|
|
|
|
return;
|
|
|
|
}
|
2011-12-25 03:37:45 +00:00
|
|
|
// TODO when I get multiple channels working, this needs to know active and pass it
|
2012-01-13 04:05:39 +00:00
|
|
|
cah.Ajax.build(cah.$.AjaxOperation.CHAT).withMessage(text).run();
|
2012-01-23 07:54:58 +00:00
|
|
|
cah.log.status("<" + cah.nickname + "> " + text);
|
2011-12-25 03:37:45 +00:00
|
|
|
$("#chat").val("");
|
|
|
|
$("#chat").focus();
|
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-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() {
|
|
|
|
var chatWidth = $("#canvas").width() - 251;
|
|
|
|
$("#chat_area").width(chatWidth);
|
|
|
|
$("#chat").width(chatWidth - 48);
|
|
|
|
var bottomHeight = $(window).height() - $("#main").height() - $("#menubar").height() - 27;
|
|
|
|
$("#bottom").height(bottomHeight);
|
|
|
|
$("#info_area").height(bottomHeight);
|
|
|
|
$("#chat_area").height(bottomHeight);
|
|
|
|
$("#log").height(bottomHeight - $("#chat").height() - 1);
|
|
|
|
// this is ugly and terrible.
|
|
|
|
if ($(window).height() < 650) {
|
|
|
|
$("body").css("overflow-y", "auto");
|
|
|
|
} else {
|
|
|
|
$("body").css("overflow-y", "hidden");
|
|
|
|
}
|
|
|
|
}
|