135 lines
4.4 KiB
JavaScript
135 lines
4.4 KiB
JavaScript
/*
|
|
* Copyright (c) 2014, 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.
|
|
*/
|
|
|
|
/**
|
|
* Preferences manager.
|
|
*
|
|
* @author Andy Janata (ajanata@socialgamer.net)
|
|
*/
|
|
|
|
cah.Preferences = {};
|
|
|
|
cah.Preferences.apply = function() {
|
|
cah.hideConnectQuit = !!$("#hide_connect_quit").attr("checked");
|
|
|
|
cah.ignoreList = {};
|
|
$($('#ignore_list').val().split('\n')).each(function() {
|
|
cah.ignoreList[this] = true;
|
|
});
|
|
|
|
// TODO card set filters
|
|
};
|
|
|
|
cah.Preferences.load = function() {
|
|
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("");
|
|
}
|
|
|
|
// If we haven't gotten the list of card sets from the server yet, this should fail silently.
|
|
cah.Preferences.updateCardSetFilters();
|
|
|
|
cah.Preferences.apply();
|
|
};
|
|
|
|
cah.Preferences.save = function() {
|
|
if ($("#hide_connect_quit").attr("checked")) {
|
|
cah.setCookie("hide_connect_quit", true);
|
|
} else {
|
|
cah.removeCookie("hide_connect_quit");
|
|
}
|
|
|
|
cah.setCookie("ignore_list", $("#ignore_list").val());
|
|
|
|
// card set filters
|
|
var bannedSets = [];
|
|
var requiredSets = [];
|
|
var func = function(whichList, setArray) {
|
|
$("#cardsets_" + whichList + " option").each(function() {
|
|
setArray.push(this.value);
|
|
});
|
|
};
|
|
func("banned", bannedSets);
|
|
func("required", requiredSets);
|
|
cah.setCookie("cardsets_banned", bannedSets.join(","));
|
|
cah.setCookie("cardsets_required", requiredSets.join(","));
|
|
|
|
cah.Preferences.apply();
|
|
};
|
|
|
|
cah.Preferences.getBannedCardSetIds = function() {
|
|
var banned = [];
|
|
if (cah.getCookie("cardsets_banned")) {
|
|
banned = cah.getCookie("cardsets_banned").split(",");
|
|
}
|
|
for ( var index in banned) {
|
|
banned[index] = Number(banned[index]);
|
|
}
|
|
|
|
return banned;
|
|
};
|
|
|
|
cah.Preferences.getRequiredCardSetIds = function() {
|
|
var required = [];
|
|
if (cah.getCookie("cardsets_required")) {
|
|
required = cah.getCookie("cardsets_required").split(",");
|
|
}
|
|
for ( var index in required) {
|
|
required[index] = Number(required[index]);
|
|
}
|
|
|
|
return required;
|
|
};
|
|
|
|
cah.Preferences.updateCardSetFilters = function() {
|
|
$("#cardsets_banned").find("option").remove();
|
|
$("#cardsets_neutral").find("option").remove();
|
|
$("#cardsets_required").find("option").remove();
|
|
|
|
var banned = cah.Preferences.getBannedCardSetIds();
|
|
var required = cah.Preferences.getRequiredCardSetIds();
|
|
for ( var weight in cah.CardSet.byWeight) {
|
|
var cardSet = cah.CardSet.byWeight[weight];
|
|
var whichList = "neutral";
|
|
if (-1 !== $.inArray(cardSet.getId(), banned)) {
|
|
whichList = "banned";
|
|
} else if (-1 !== $.inArray(cardSet.getId(), required)) {
|
|
whichList = "required";
|
|
}
|
|
cah.addItem("cardsets_" + whichList, cardSet.getId(), cardSet.getName(), whichList);
|
|
}
|
|
};
|
|
|
|
cah.Preferences.transferCardSets = function(sourceList, destList) {
|
|
cah.transferItems("cardsets_" + sourceList, "cardsets_" + destList, destList, function(a, b) {
|
|
return cah.CardSet.list[a.value].getWeight() - cah.CardSet.list[b.value].getWeight();
|
|
});
|
|
};
|