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
|
|
|
/**
|
|
|
|
* Logging functions.
|
|
|
|
*
|
2012-02-06 22:00:24 +00:00
|
|
|
* TODO make this a proper object with a singleton instance.
|
|
|
|
*
|
|
|
|
* @author Andy Janata (ajanata@socialgamer.net)
|
2011-12-23 02:48:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
cah.log = {};
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Log a message for the user the see, always, as a status message. This is also used for chat. The
|
|
|
|
* current time is displayed with the log message, using the user's locale settings to determine
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* @param {string}
|
|
|
|
* text Text to display for this message. Text is added as a TextNode, so HTML is properly
|
|
|
|
* escaped automatically.
|
|
|
|
* @param {?string}
|
|
|
|
* opt_class Optional CSS class to use for this message.
|
|
|
|
*/
|
2012-01-23 07:54:58 +00:00
|
|
|
cah.log.status = function(text, opt_class) {
|
2012-02-06 22:00:24 +00:00
|
|
|
// TODO this doesn't work right on some mobile browsers
|
2011-12-25 03:38:19 +00:00
|
|
|
var scroll = $("#log").prop("scrollHeight") - $("#log").height() - $("#log").prop("scrollTop") <= 5;
|
2012-01-23 07:54:58 +00:00
|
|
|
|
|
|
|
var node = $("<span></span><br/>");
|
2012-03-23 06:38:18 +00:00
|
|
|
$(node[0]).text("[" + new Date().toLocaleTimeString() + "] " + text + "\n");
|
2012-01-23 07:54:58 +00:00
|
|
|
if (opt_class) {
|
|
|
|
$(node).addClass(opt_class);
|
|
|
|
}
|
|
|
|
$("#log").append(node);
|
|
|
|
|
2011-12-25 03:38:19 +00:00
|
|
|
if (scroll) {
|
|
|
|
$("#log").prop("scrollTop", $("#log").prop("scrollHeight"));
|
|
|
|
}
|
2011-12-23 02:48:20 +00:00
|
|
|
};
|
|
|
|
|
2012-02-06 22:00:24 +00:00
|
|
|
/**
|
|
|
|
* Log a message for the user to see, always, as an error message.
|
|
|
|
*
|
|
|
|
* @param {string}
|
|
|
|
* text Text to display for this message. Text is added as a TextNode, so HTML is properly
|
|
|
|
* escaped automatically.
|
|
|
|
*/
|
2011-12-23 02:48:20 +00:00
|
|
|
cah.log.error = function(text) {
|
2012-01-23 07:54:58 +00:00
|
|
|
cah.log.status("Error: " + text, "error");
|
2011-12-23 02:48:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log a message if debugging is enabled, optionally dumping the contents of an object.
|
|
|
|
*
|
2012-02-06 22:00:24 +00:00
|
|
|
* If SILENT_DEBUG is on, and IE is in use, it can cause the game to break if the debugger isn't
|
|
|
|
* open...
|
|
|
|
*
|
2011-12-23 02:48:20 +00:00
|
|
|
* @param {string}
|
|
|
|
* text Text to display
|
2012-01-21 03:11:39 +00:00
|
|
|
* @param {object}
|
|
|
|
* opt_obj Optional. Object to dump along with message.
|
2011-12-23 02:48:20 +00:00
|
|
|
*/
|
|
|
|
cah.log.debug = function(text, opt_obj) {
|
2012-01-28 08:49:50 +00:00
|
|
|
if (cah.SILENT_DEBUG && console) {
|
2012-01-30 08:36:21 +00:00
|
|
|
if (console.debug) {
|
|
|
|
console.debug("[" + new Date().toLocaleTimeString() + "]", text, opt_obj);
|
|
|
|
} else if (console.log) {
|
|
|
|
console.log("[" + new Date().toLocaleTimeString() + "] " + text);
|
|
|
|
if (opt_obj) {
|
|
|
|
if (console.dir) {
|
|
|
|
console.dir(opt_obj);
|
|
|
|
} else if (JSON && JSON.stringify) {
|
|
|
|
console.log(JSON.stringify(opt_obj));
|
|
|
|
} else {
|
|
|
|
console.log("TODO: SILENT_DEBUG without console.debug, with console.log, "
|
|
|
|
+ "without console.dir, without JSON.stringify");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (console.log) {
|
|
|
|
console.log("[" + new Date().toLocaleTimeString() + "]", text, opt_obj);
|
|
|
|
}
|
2012-01-28 08:49:50 +00:00
|
|
|
}
|
2011-12-23 02:48:20 +00:00
|
|
|
if (cah.DEBUG) {
|
|
|
|
if (opt_obj) {
|
|
|
|
if (JSON && JSON.stringify) {
|
|
|
|
cah.log.debug(text + ": " + JSON.stringify(opt_obj));
|
|
|
|
} else {
|
|
|
|
cah.log.debug(text + ": TODO: debug log without JSON.stringify()");
|
|
|
|
}
|
|
|
|
} else {
|
2012-01-23 07:54:58 +00:00
|
|
|
cah.log.status("DEBUG: " + text, "debug");
|
2011-12-23 02:48:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|