kopia lustrzana https://gitlab.com/gridtracker.org/gridtracker
Merge branch 'cbayer-award-tracker-hunting-overrides' into 'master'
override hunting in CR based on Awards in award tracker See merge request gridtracker.org/gridtracker!184 If this is changing anything in the UI or operational behavior, please prepare to update the wiki!settings-file-dialogs
commit
7dbb212e20
|
@ -324,7 +324,7 @@ function viewRoster()
|
||||||
{
|
{
|
||||||
let rosterSettings = prepareRosterSettings();
|
let rosterSettings = prepareRosterSettings();
|
||||||
processRosterFiltering(callRoster, rosterSettings);
|
processRosterFiltering(callRoster, rosterSettings);
|
||||||
processRosterHunting(callRoster, rosterSettings);
|
processRosterHunting(callRoster, rosterSettings, g_awardTracker);
|
||||||
renderRoster(callRoster, rosterSettings);
|
renderRoster(callRoster, rosterSettings);
|
||||||
sendAlerts(callRoster, rosterSettings);
|
sendAlerts(callRoster, rosterSettings);
|
||||||
}
|
}
|
||||||
|
@ -855,18 +855,10 @@ function setVisual()
|
||||||
// Award Hunter
|
// Award Hunter
|
||||||
if (referenceNeed.value == LOGBOOK_AWARD_TRACKER)
|
if (referenceNeed.value == LOGBOOK_AWARD_TRACKER)
|
||||||
{
|
{
|
||||||
/* for ( key in g_rosterSettings.wanted )
|
|
||||||
{
|
|
||||||
document.getElementById(key).checked = true;
|
|
||||||
let t = key.replace("hunt","");
|
|
||||||
if ( t in g_rosterSettings.columns )
|
|
||||||
g_rosterSettings.columns[t] = true;
|
|
||||||
} */
|
|
||||||
|
|
||||||
HuntModeControls.style.display = "none";
|
HuntModeControls.style.display = "none";
|
||||||
CallsignsControls.style.display = "none";
|
CallsignsControls.style.display = "none";
|
||||||
AwardTrackerControls.style.display = "";
|
AwardTrackerControls.style.display = "";
|
||||||
huntingMatrixDiv.style.display = "";
|
huntingMatrixDiv.style.display = "none";
|
||||||
updateAwardList();
|
updateAwardList();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
function processRosterHunting(callRoster, rosterSettings)
|
function processRosterHunting(callRoster, rosterSettings, awardTracker)
|
||||||
{
|
{
|
||||||
// these lets, do they rely on anything between the top and here?
|
// these lets, do they rely on anything between the top and here?
|
||||||
// if not could they be put in the let list at the beginning?
|
// if not could they be put in the let list at the beginning?
|
||||||
|
@ -163,9 +163,25 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
callObj.style.call = "class='dxCaller'";
|
callObj.style.call = "class='dxCaller'";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// award tracker overrides
|
||||||
|
let awardTrackerOverrides = {
|
||||||
|
call: false,
|
||||||
|
grids: false,
|
||||||
|
dxcc: false,
|
||||||
|
states: false,
|
||||||
|
cnty: false,
|
||||||
|
cqz: false,
|
||||||
|
px: false,
|
||||||
|
cont: false
|
||||||
|
};
|
||||||
|
if (g_rosterSettings.reference == LOGBOOK_AWARD_TRACKER) {
|
||||||
|
for (let key in awardTracker) {
|
||||||
|
awardTrackerOverrides[awardTracker[key].rule.type] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Hunting for callsigns
|
// Hunting for callsigns
|
||||||
if (huntCallsign.checked == true)
|
if (huntCallsign.checked || awardTrackerOverrides.call)
|
||||||
{
|
{
|
||||||
let hash = callsign + workHashSuffix;
|
let hash = callsign + workHashSuffix;
|
||||||
let layeredHash = rosterSettings.layeredMode && (callsign + layeredHashSuffix)
|
let layeredHash = rosterSettings.layeredMode && (callsign + layeredHashSuffix)
|
||||||
|
@ -242,7 +258,7 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hunting for grids
|
// Hunting for grids
|
||||||
if (huntGrid.checked == true && callObj.grid.length > 1)
|
if ((huntGrid.checked || awardTrackerOverrides.grids) && callObj.grid.length > 1)
|
||||||
{
|
{
|
||||||
let hash = callObj.grid.substr(0, 4) + workHashSuffix;
|
let hash = callObj.grid.substr(0, 4) + workHashSuffix;
|
||||||
let layeredHash = rosterSettings.layeredMode && (callObj.grid.substr(0, 4) + layeredHashSuffix)
|
let layeredHash = rosterSettings.layeredMode && (callObj.grid.substr(0, 4) + layeredHashSuffix)
|
||||||
|
@ -292,7 +308,7 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hunting for DXCC
|
// Hunting for DXCC
|
||||||
if (huntDXCC.checked == true)
|
if (huntDXCC.checked || awardTrackerOverrides.dxcc)
|
||||||
{
|
{
|
||||||
let hash = String(callObj.dxcc) + workHashSuffix;
|
let hash = String(callObj.dxcc) + workHashSuffix;
|
||||||
let layeredHash = rosterSettings.layeredMode && (String(callObj.dxcc) + layeredHashSuffix)
|
let layeredHash = rosterSettings.layeredMode && (String(callObj.dxcc) + layeredHashSuffix)
|
||||||
|
@ -363,7 +379,7 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hunting for US States
|
// Hunting for US States
|
||||||
if (huntState.checked == true && window.opener.g_callsignLookups.ulsUseEnable == true)
|
if ((huntState.checked || awardTrackerOverrides.states) && window.opener.g_callsignLookups.ulsUseEnable == true)
|
||||||
{
|
{
|
||||||
let stateSearch = callObj.state;
|
let stateSearch = callObj.state;
|
||||||
let finalDxcc = callObj.dxcc;
|
let finalDxcc = callObj.dxcc;
|
||||||
|
@ -421,7 +437,7 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hunting for US Counties
|
// Hunting for US Counties
|
||||||
if (huntCounty.checked == true && window.opener.g_callsignLookups.ulsUseEnable == true)
|
if ((huntCounty.checked || awardTrackerOverrides.cnty) && window.opener.g_callsignLookups.ulsUseEnable == true)
|
||||||
{
|
{
|
||||||
let finalDxcc = callObj.dxcc;
|
let finalDxcc = callObj.dxcc;
|
||||||
if (
|
if (
|
||||||
|
@ -535,7 +551,7 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hunting for CQ Zones
|
// Hunting for CQ Zones
|
||||||
if (huntCQz.checked == true)
|
if (huntCQz.checked || awardTrackerOverrides.cqz)
|
||||||
{
|
{
|
||||||
let huntTotal = callObj.cqza.length;
|
let huntTotal = callObj.cqza.length;
|
||||||
let huntFound = 0, layeredFound = 0, workedFound = 0, layeredWorkedFound = 0, marathonFound = 0;
|
let huntFound = 0, layeredFound = 0, workedFound = 0, layeredWorkedFound = 0, marathonFound = 0;
|
||||||
|
@ -676,7 +692,7 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hunting for WPX (Prefixes)
|
// Hunting for WPX (Prefixes)
|
||||||
if (huntPX.checked == true && callObj.px)
|
if ((huntPX.checked || awardTrackerOverrides.px) && callObj.px)
|
||||||
{
|
{
|
||||||
let hash = String(callObj.px) + workHashSuffix;
|
let hash = String(callObj.px) + workHashSuffix;
|
||||||
let layeredHash = rosterSettings.layeredMode && (String(callObj.px) + layeredHashSuffix)
|
let layeredHash = rosterSettings.layeredMode && (String(callObj.px) + layeredHashSuffix)
|
||||||
|
@ -726,7 +742,7 @@ function processRosterHunting(callRoster, rosterSettings)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hunting for Continents
|
// Hunting for Continents
|
||||||
if (huntCont.checked == true && callObj.cont)
|
if ((huntCont.checked || awardTrackerOverrides.cont) && callObj.cont)
|
||||||
{
|
{
|
||||||
let hash = String(callObj.cont) + workHashSuffix;
|
let hash = String(callObj.cont) + workHashSuffix;
|
||||||
let layeredHash = rosterSettings.layeredMode && (String(callObj.cont) + layeredHashSuffix)
|
let layeredHash = rosterSettings.layeredMode && (String(callObj.cont) + layeredHashSuffix)
|
||||||
|
|
Ładowanie…
Reference in New Issue