Compare commits
	
		
			No commits in common. "8672f00ac1924438ede692ae297966b37d41ba72" and "cc7876639cfa272fddbbbc7151f0d5b4a5d8cae6" have entirely different histories. 
		
	
	
		
			8672f00ac1
			...
			cc7876639c
		
	
		
	
								
									
									
										
											29
										
									
									build.js
									
									
									
									
								
								
							
							
										
											29
										
									
									build.js
									
									
									
									
								| 
						 | 
					@ -203,7 +203,7 @@ replaceOne(/,(0!==\w+\.\w+\[(\w+)\])(\)&&\w+\.\w+\(\2,800,!1,0\),)/g,
 | 
				
			||||||
	`, ${dict.game}.${dict.gIsTeamGame} && donationsTracker.displayHistory($2, ${rawPlayerNames}, ${gIsSingleplayer}), $1 && !isEmptySpace $3`);
 | 
						`, ${dict.game}.${dict.gIsTeamGame} && donationsTracker.displayHistory($2, ${rawPlayerNames}, ${gIsSingleplayer}), $1 && !isEmptySpace $3`);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Reset donation history and leaderboard filter when a new game is started
 | 
					// Reset donation history and leaderboard filter when a new game is started
 | 
				
			||||||
replaceOne(new RegExp(`,this\\.${dictionary.playerBalances}.fill\\(0\\),`, "g"), "$& donationsTracker.reset(), leaderboardFilter.reset(), ");
 | 
					replaceOne(new RegExp(`,this\\.${dictionary.playerBalances}=new Uint32Array\\(\\w+\\.\\w+\\),`, "g"), "$& donationsTracker.reset(), leaderboardFilter.reset(), ");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{ // Player list and leaderboard filter tabs
 | 
					{ // Player list and leaderboard filter tabs
 | 
				
			||||||
	// Draw player list button
 | 
						// Draw player list button
 | 
				
			||||||
| 
						 | 
					@ -238,28 +238,22 @@ replaceOne(new RegExp(`,this\\.${dictionary.playerBalances}.fill\\(0\\),`, "g"),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{ // Leaderboard filter
 | 
					{ // Leaderboard filter
 | 
				
			||||||
	// for the leaderboard draw function:
 | 
						// for the leaderboard draw function:
 | 
				
			||||||
	replaceRawCode("function drawFunction(){a0A.clearRect(0,0,a04,y9),a0A.fillStyle=aZ.lE,a0A.fillRect(0,0,a04,a0F),a0A.fillStyle=aZ.kZ,a0A.fillRect(0,a0F,a04,y9-a0F),leaderboardPositionsById[game.playerId]>=position&&a0Z(leaderboardPositionsById[game.playerId]-position,aZ.kw),0!==leaderboardPositionsById[game.playerId]&&0===position&&a0Z(0,aZ.lJ),-1!==a0P&&a0Z(a0P,aZ.kd),a0A.fillStyle=aZ.gF,a0A.fillRect(0,a0F,a04,1),a0A.fillRect(0,0,a04,b0.ur),a0A.fillRect(0,0,b0.ur,y9),a0A.fillRect(a04-b0.ur,0,b0.ur,y9),a0A.fillRect(0,y9-b0.ur,a04,b0.ur),",
 | 
						replaceRawCode("a0A.clearRect(0,0,a04,y9),a0A.fillStyle=aZ.lE,a0A.fillRect(0,0,a04,a0F),a0A.fillStyle=aZ.kZ,a0A.fillRect(0,a0F,a04,y9-a0F),leaderboardPositionsById[game.playerId]>=position&&a0Z(leaderboardPositionsById[game.playerId]-position,aZ.kw),0!==leaderboardPositionsById[game.playerId]&&0===position&&a0Z(0,aZ.lJ),-1!==a0P&&a0Z(a0P,aZ.kd),a0A.fillStyle=aZ.gF,a0A.fillRect(0,a0F,a04,1),a0A.fillRect(0,0,a04,b0.ur),a0A.fillRect(0,0,b0.ur,y9),a0A.fillRect(a04-b0.ur,0,b0.ur,y9),a0A.fillRect(0,y9-b0.ur,a04,b0.ur),",
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		`var leaderboardHasChanged = true;
 | 
							`a0A.clearRect(0, 0, a04, y9),
 | 
				
			||||||
		this.playerPos = game.playerId;
 | 
					 | 
				
			||||||
		function updateFilteredLb() {
 | 
					 | 
				
			||||||
			if (!leaderboardHasChanged) return;
 | 
					 | 
				
			||||||
			leaderboardFilter.filteredLeaderboard = leaderboardFilter.playersToInclude
 | 
					 | 
				
			||||||
				.map(id => leaderboardPositionsById[id]).sort((a, b) => a - b);
 | 
					 | 
				
			||||||
			leaderboardHasChanged = false;
 | 
					 | 
				
			||||||
			this.playerPos = leaderboardFilter.filteredLeaderboard.indexOf(leaderboardPositionsById[game.playerId]);
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		function drawFunction() {
 | 
					 | 
				
			||||||
		a0A.clearRect(0, 0, a04, y9),
 | 
					 | 
				
			||||||
		a0A.fillStyle = aZ.lE,
 | 
							a0A.fillStyle = aZ.lE,
 | 
				
			||||||
		a0A.fillRect(0, 0, a04, a0F),
 | 
							a0A.fillRect(0, 0, a04, a0F),
 | 
				
			||||||
		a0A.fillStyle = aZ.kZ,
 | 
							a0A.fillStyle = aZ.kZ,
 | 
				
			||||||
		a0A.fillRect(0, a0F, a04, y9 - a0F);
 | 
							a0A.fillRect(0, a0F, a04, y9 - a0F);
 | 
				
			||||||
		if (leaderboardFilter.enabled) updateFilteredLb();
 | 
							if (leaderboardFilter.enabled) {
 | 
				
			||||||
 | 
								leaderboardFilter.filteredLeaderboard = leaderboardFilter.playersToInclude
 | 
				
			||||||
 | 
									.map(id => leaderboardPositionsById[id]).sort((a, b) => a - b);
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
		var playerPos = (leaderboardFilter.enabled
 | 
							var playerPos = (leaderboardFilter.enabled
 | 
				
			||||||
			? this.playerPos
 | 
								? leaderboardFilter.filteredLeaderboard.indexOf(leaderboardPositionsById[game.playerId])
 | 
				
			||||||
			: leaderboardPositionsById[game.playerId]
 | 
								: leaderboardPositionsById[game.playerId]
 | 
				
			||||||
		);
 | 
							);
 | 
				
			||||||
 | 
							this.playerPos = playerPos;
 | 
				
			||||||
		if (leaderboardFilter.hoveringOverTabs) a0P = -1;
 | 
							if (leaderboardFilter.hoveringOverTabs) a0P = -1;
 | 
				
			||||||
		if (leaderboardFilter.enabled && a0P >= leaderboardFilter.filteredLeaderboard.length) a0P = -1;
 | 
							if (leaderboardFilter.enabled && a0P >= leaderboardFilter.filteredLeaderboard.length) a0P = -1;
 | 
				
			||||||
		playerPos >= position && a0Z(playerPos - position, aZ.kw),
 | 
							playerPos >= position && a0Z(playerPos - position, aZ.kw),
 | 
				
			||||||
| 
						 | 
					@ -306,14 +300,11 @@ replaceOne(new RegExp(`,this\\.${dictionary.playerBalances}.fill\\(0\\),`, "g"),
 | 
				
			||||||
		`,a09.height=y9,a09_ctx=a09.getContext("2d",{alpha:!0}),a0D=.025*a04,a06=.16*a04,a0E=0*a04,a0F=Math.floor(.45*a0D+a06),a0G=(y9-a06-2*a0D-a0E)/a08,
 | 
							`,a09.height=y9,a09_ctx=a09.getContext("2d",{alpha:!0}),a0D=.025*a04,a06=.16*a04,a0E=0*a04,a0F=Math.floor(.45*a0D+a06),a0G=(y9-a06-2*a0D-a0E)/a08,
 | 
				
			||||||
		a09.height = y9 += a0G, leaderboardFilter.tabBarOffset = Math.floor(a0G * 1.3), leaderboardFilter.verticalClickThreshold = y9 - leaderboardFilter.tabBarOffset, leaderboardFilter.windowWidth = a04,
 | 
							a09.height = y9 += a0G, leaderboardFilter.tabBarOffset = Math.floor(a0G * 1.3), leaderboardFilter.verticalClickThreshold = y9 - leaderboardFilter.tabBarOffset, leaderboardFilter.windowWidth = a04,
 | 
				
			||||||
		a05=aY.g0.g1(1,Math.floor(.55*a06)),`)
 | 
							a05=aY.g0.g1(1,Math.floor(.55*a06)),`)
 | 
				
			||||||
	// Set the leaderboardHasChanged flag on leaderboard updates
 | 
					 | 
				
			||||||
	replaceRawCode("for(var eM=a0q-1;0<=eM;eM--)a14[eM]=jR[eM],a15[eM]=a8.f8[jR[eM]];a14[a0q]=a0l[b.ed],a15[a0q]=a8.f8[b.ed]",
 | 
					 | 
				
			||||||
	`for(var eM=a0q-1;0<=eM;eM--)a14[eM]=jR[eM],a15[eM]=a8.f8[jR[eM]];a14[a0q]=a0l[b.ed],a15[a0q]=a8.f8[b.ed]; leaderboardHasChanged = true;`);
 | 
					 | 
				
			||||||
	// handle clicking on a player in the leaderboard
 | 
						// handle clicking on a player in the leaderboard
 | 
				
			||||||
	replaceRawCode("var a0p=a0q(fJ);return ag.tQ()&&-1!==a0P&&(a0P=-1,a0Y(),b3.d1=!0),b3.dY-a0Q<350&&a0T===a0p&&-1!==(a0p=(a0p=yr(-1,a0p,windowHeight))!==windowHeight&&vU(x,y)?a0p:-1)&&(x=leaderboardArray[a0p+position],a0p===windowHeight-1&&leaderboardPositionsById[game.playerId]>=position+windowHeight-1&&(x=game.playerId),",
 | 
						replaceRawCode("var a0p=a0q(fJ);return ag.tQ()&&-1!==a0P&&(a0P=-1,a0Y(),b3.d1=!0),b3.dY-a0Q<350&&a0T===a0p&&-1!==(a0p=(a0p=yr(-1,a0p,windowHeight))!==windowHeight&&vU(x,y)?a0p:-1)&&(x=leaderboardArray[a0p+position],a0p===windowHeight-1&&leaderboardPositionsById[game.playerId]>=position+windowHeight-1&&(x=game.playerId),",
 | 
				
			||||||
		`var a0p = a0q(fJ);
 | 
							`var a0p = a0q(fJ);
 | 
				
			||||||
		var isEmptySpace = false;
 | 
							var isEmptySpace = false;
 | 
				
			||||||
		return ag.tQ() && -1 !== a0P && (a0P = -1, a0Y(), b3.d1 = !0), b3.dY - a0Q < 350 && a0T === a0p && -1 !== (a0p = (a0p = yr(-1, a0p, windowHeight)) !== windowHeight && vU(x, y) ? a0p : -1) && (x = (leaderboardFilter.enabled ? (updateFilteredLb(), leaderboardArray[leaderboardFilter.filteredLeaderboard[a0p + position] ?? (isEmptySpace = true, leaderboardPositionsById[game.playerId])]) : leaderboardArray[a0p + position]), a0p === windowHeight - 1 && (leaderboardFilter.enabled ? this.playerPos : leaderboardPositionsById[game.playerId]) >=
 | 
							return ag.tQ() && -1 !== a0P && (a0P = -1, a0Y(), b3.d1 = !0), b3.dY - a0Q < 350 && a0T === a0p && -1 !== (a0p = (a0p = yr(-1, a0p, windowHeight)) !== windowHeight && vU(x, y) ? a0p : -1) && (x = (leaderboardFilter.enabled ? leaderboardArray[leaderboardFilter.filteredLeaderboard[a0p + position] ?? (isEmptySpace = true, leaderboardPositionsById[game.playerId])] : leaderboardArray[a0p + position]), a0p === windowHeight - 1 && (leaderboardFilter.enabled ? this.playerPos : leaderboardPositionsById[game.playerId]) >=
 | 
				
			||||||
			position + windowHeight - 1 && (x = game.playerId), !isEmptySpace && `);
 | 
								position + windowHeight - 1 && (x = game.playerId), !isEmptySpace && `);
 | 
				
			||||||
	// Get clan parsing function
 | 
						// Get clan parsing function
 | 
				
			||||||
	replaceRawCode(`this.uI=function(username){var uK,uJ=username.indexOf("[");return!(uJ<0)&&1<(uK=username.indexOf("]"))-uJ&&uK-uJ<=8?username.substring(uJ+1,uK).toUpperCase().trim():null}`,
 | 
						replaceRawCode(`this.uI=function(username){var uK,uJ=username.indexOf("[");return!(uJ<0)&&1<(uK=username.indexOf("]"))-uJ&&uK-uJ<=8?username.substring(uJ+1,uK).toUpperCase().trim():null}`,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
const fx_version = '0.6.4.5'; // FX Client Version
 | 
					const fx_version = '0.6.4.3'; // FX Client Version
 | 
				
			||||||
const fx_update = 'Jun 3'; // FX Client Last Updated
 | 
					const fx_update = 'Jun 1'; // FX Client Last Updated
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if (localStorage.getItem("fx_winCount") == undefined || localStorage.getItem("fx_winCount") == null) {
 | 
					if (localStorage.getItem("fx_winCount") == undefined || localStorage.getItem("fx_winCount") == null) {
 | 
				
			||||||
    var wins_counter = 0;
 | 
					    var wins_counter = 0;
 | 
				
			||||||
| 
						 | 
					@ -349,8 +349,8 @@ const playerList = new (function () {
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const leaderboardFilter = new (function() {
 | 
					const leaderboardFilter = new (function() {
 | 
				
			||||||
    //this.playersToInclude = [0,1,8,20,24,30,32,42,50,69,200,400,500,510,511]; // for testing
 | 
					    this.playersToInclude = [0,1,8,20,24,30,32,42,50,69,200,400,500,510,511]; // for testing
 | 
				
			||||||
    this.playersToInclude = [];
 | 
					    //this.playersToInclude = [];
 | 
				
			||||||
    this.tabLabels = ["ALL", "CLAN"];
 | 
					    this.tabLabels = ["ALL", "CLAN"];
 | 
				
			||||||
    // these get populated by the modified game code
 | 
					    // these get populated by the modified game code
 | 
				
			||||||
    this.filteredLeaderboard = [];
 | 
					    this.filteredLeaderboard = [];
 | 
				
			||||||
| 
						 | 
					@ -364,8 +364,8 @@ const leaderboardFilter = new (function() {
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    this.selectedTab = 0;
 | 
					    this.selectedTab = 0;
 | 
				
			||||||
    this.tabHovering = -1;
 | 
					    this.tabHovering = -1;
 | 
				
			||||||
    this.enabled = false;
 | 
					    //this.enabled = false;
 | 
				
			||||||
    //this.enabled = true;
 | 
					    this.enabled = true;
 | 
				
			||||||
    this.drawTabs = function(canvas, totalWidth, verticalOffset, colorForSelectedTab) {
 | 
					    this.drawTabs = function(canvas, totalWidth, verticalOffset, colorForSelectedTab) {
 | 
				
			||||||
        canvas.textBaseline = "middle";
 | 
					        canvas.textBaseline = "middle";
 | 
				
			||||||
        canvas.textAlign = "center";
 | 
					        canvas.textAlign = "center";
 | 
				
			||||||
| 
						 | 
					@ -405,9 +405,9 @@ const leaderboardFilter = new (function() {
 | 
				
			||||||
        return isHovering;
 | 
					        return isHovering;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    this.handleMouseDown = (xRelative) => {
 | 
					    this.handleMouseDown = (xRelative) => {
 | 
				
			||||||
        const tab = Math.floor(xRelative / (this.windowWidth / this.tabLabels.length));
 | 
					        //console.log("click; x: ", xRelative);
 | 
				
			||||||
        if (this.selectedTab !== tab) {
 | 
					        if (this.tabHovering !== this.selectedTab) {
 | 
				
			||||||
            this.selectedTab = tab;
 | 
					            this.selectedTab = this.tabHovering;
 | 
				
			||||||
            if (this.selectedTab === 0) this.clearFilter();
 | 
					            if (this.selectedTab === 0) this.clearFilter();
 | 
				
			||||||
            else if (this.selectedTab === 1) this.filterByOwnClan();
 | 
					            else if (this.selectedTab === 1) this.filterByOwnClan();
 | 
				
			||||||
            this.repaintLeaderboard();
 | 
					            this.repaintLeaderboard();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue