function processRosterFiltering(callRoster, rosterSettings) { // First loop, exclude calls, mostly based on "Exceptions" settings // this whole section is full of individual if's that could be broken out for (let callHash in callRoster) { let entry = callRoster[callHash]; let callObj = entry.callObj; let call = entry.DEcall; entry.tx = true; callObj.shouldAlert = false; callObj.reason = Array(); callObj.awardReason = "Callsign"; if (rosterSettings.now - callObj.age > window.opener.g_mapSettings.rosterTime) { entry.tx = false; entry.alerted = false; callObj.qrz = false; callObj.reset = true; continue; } if (!callObj.dxcc || callObj.dxcc == -1) { entry.tx = false; continue; } if (window.opener.g_instances[callObj.instance].crEnable == false) { entry.tx = false; continue; } if (call in g_blockedCalls) { entry.tx = false; continue; } if ( entry.DXcall + " from All" in g_blockedCQ || entry.DXcall + " from " + window.opener.g_dxccToAltName[callObj.dxcc] in g_blockedCQ ) { entry.tx = false; continue; } if (callObj.ituza in g_blockedITUz) { entry.tx = false; continue; } if (callObj.cqza in g_blockedCQz) { entry.tx = false; continue; } if (callObj.dxcc in g_blockedDxcc) { entry.tx = false; continue; } if (g_rosterSettings.cqOnly == true) { if (g_rosterSettings.wantRRCQ) { if (callObj.RR73 == false && callObj.CQ == false) { entry.tx = false; continue; } } else if (callObj.CQ == false) { entry.tx = false; continue; } } if (g_rosterSettings.useRegex && g_rosterSettings.callsignRegex.length > 0) { try { if (!call.match(g_rosterSettings.callsignRegex)) { entry.tx = false; continue; } } catch (e) {} } if (g_rosterSettings.requireGrid == true && callObj.grid.length != 4) { entry.tx = false; continue; } if (g_rosterSettings.wantMinDB == true && entry.message.SR < g_rosterSettings.minDb) { entry.tx = false; continue; } if (g_rosterSettings.wantMaxDT == true && Math.abs(entry.message.DT) > g_rosterSettings.maxDT) { entry.tx = false; continue; } if (g_rosterSettings.wantMinFreq == true && entry.message.DF < g_rosterSettings.minFreq) { entry.tx = false; continue; } if (g_rosterSettings.wantMaxFreq == true && entry.message.DF > g_rosterSettings.maxFreq) { entry.tx = false; continue; } if (g_rosterSettings.noMsg == true) { try { if (callObj.msg.match(g_rosterSettings.noMsgValue)) { entry.tx = false; continue; } } catch (e) {} } if (g_rosterSettings.onlyMsg == true) { try { if (!callObj.msg.match(g_rosterSettings.onlyMsgValue)) { entry.tx = false; continue; } } catch (e) {} } if (callObj.dxcc == window.opener.g_myDXCC) { if (g_rosterSettings.noMyDxcc == true) { entry.tx = false; continue; } } else if (g_rosterSettings.onlyMyDxcc == true) { entry.tx = false; continue; } if (window.opener.g_callsignLookups.lotwUseEnable == true && g_rosterSettings.usesLoTW == true) { if (!(call in window.opener.g_lotwCallsigns)) { entry.tx = false; continue; } if (g_rosterSettings.maxLoTW < 27) { let months = (g_day - window.opener.g_lotwCallsigns[call]) / 30; if (months > g_rosterSettings.maxLoTW) { entry.tx = false; continue; } } } if (window.opener.g_callsignLookups.eqslUseEnable == true && g_rosterSettings.useseQSL == true) { if (!(call in window.opener.g_eqslCallsigns)) { entry.tx = false; continue; } } if (window.opener.g_callsignLookups.oqrsUseEnable == true && g_rosterSettings.usesOQRS == true) { if (!(call in window.opener.g_oqrsCallsigns)) { entry.tx = false; continue; } } if (rosterSettings.callMode != "all") { if (entry.DXcall == "CQ DX" && callObj.dxcc == window.opener.g_myDXCC) { entry.tx = false; continue; } let hash = hashMaker(call, callObj, g_rosterSettings.reference); if (rosterSettings.callMode == "worked" && hash in g_worked.call) { entry.tx = false; continue; } if (rosterSettings.callMode == "confirmed" && hash in g_confirmed.call) { entry.tx = false; continue; } if (g_rosterSettings.hunting == "grid") { let hash = hashMaker(callObj.grid.substr(0, 4), callObj, g_rosterSettings.reference); if (rosterSettings.huntIndex && hash in rosterSettings.huntIndex.grid) { entry.tx = false; continue; } if (callObj.grid.length == 0) { entry.tx = false; continue; } continue; } if (g_rosterSettings.hunting == "dxcc") { let hash = hashMaker(String(callObj.dxcc), callObj, g_rosterSettings.reference); if (rosterSettings.huntIndex && (hash in rosterSettings.huntIndex.dxcc)) { entry.tx = false; continue; } continue; } if (callObj.dxcc === -1) { entry.tx = false; continue; } if (g_rosterSettings.hunting == "dxccs" && r_currentDXCCs != -1) { if (callObj.dxcc != r_currentDXCCs) { entry.tx = false; continue; } } if (g_rosterSettings.hunting == "wpx") { if (String(callObj.px) == null) { entry.tx = false; continue; } let hash = hashMaker(String(callObj.px), callObj, g_rosterSettings.reference); if (rosterSettings.huntIndex && (hash in rosterSettings.huntIndex.px)) { entry.tx = false; continue; } continue; } if (g_rosterSettings.hunting == "cq") { let huntTotal = callObj.cqza.length; if (huntTotal == 0 || !rosterSettings.huntIndex) { entry.tx = false; continue; } let huntFound = 0; for (index in callObj.cqza) { let hash = hashMaker(callObj.cqza[index], callObj, g_rosterSettings.reference); if (hash in rosterSettings.huntIndex.cqz) huntFound++; } if (huntFound == huntTotal) { entry.tx = false; continue; } continue; } if (g_rosterSettings.hunting == "itu") { let huntTotal = callObj.ituza.length; if (huntTotal == 0 || !rosterSettings.huntIndex) { entry.tx = false; continue; } let huntFound = 0; for (index in callObj.ituza) { let hash = hashMaker(callObj.ituza[index], callObj, g_rosterSettings.reference); if (hash in rosterSettings.huntIndex.ituz) huntFound++; } if (huntFound == huntTotal) { entry.tx = false; continue; } if (callObj.grid.length == 0) { entry.tx = false; continue; } continue; } if (g_rosterSettings.hunting == "usstates" && window.opener.g_callsignLookups.ulsUseEnable == true) { let state = callObj.state; let finalDxcc = callObj.dxcc; if (finalDxcc == 291 || finalDxcc == 110 || finalDxcc == 6) { if (state in window.opener.g_StateData) { let hash = hashMaker(state, callObj, g_rosterSettings.reference); if (rosterSettings.huntIndex && hash in rosterSettings.huntIndex.state) { entry.tx = false; continue; } } else entry.tx = false; } else entry.tx = false; continue; } if (g_rosterSettings.hunting == "usstate" && g_currentUSCallsigns) { if (call in g_currentUSCallsigns) { // Do Nothing } else { entry.tx = false; continue; } continue; } } if (rosterSettings.isAwardTracker) { let tx = false; let baseHash = hashMaker("", callObj, g_rosterSettings.reference); for (let award in g_awardTracker) { if (g_awardTracker[award].enable) { tx = testAward(award, callObj, baseHash); if (tx) { let x = g_awardTracker[award]; // TODO: Move award reason out of exclusions code? callObj.awardReason = g_awards[x.sponsor].awards[x.name].tooltip + " (" + g_awards[x.sponsor].sponsor + ")"; callObj.reason.push(x.name + " - " + x.sponsor); callObj.shouldAlert = true; break; } } } if (callObj.shouldAlert == false && rosterSettings.onlyHits == true && callObj.qrz == false) { tx = false } entry.tx = tx; } } }