mirror of
				https://github.com/tobspr/shapez.io.git
				synced 2025-06-13 13:04:03 +00:00 
			
		
		
		
	
		
			
	
	
		
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | const glob = require("glob"); | ||
|  | const execSync = require("child_process").execSync; | ||
|  | const trim = require("trim"); | ||
|  | const fs = require("fs"); | ||
|  | const path = require("path"); | ||
|  | 
 | ||
|  | module.exports = { | ||
|  |     getRevision: function (useLast = false) { | ||
|  |         const commitHash = execSync("git rev-parse --short " + (useLast ? "HEAD^1" : "HEAD")).toString("ascii"); | ||
|  |         return commitHash.replace(/^\s+|\s+$/g, ""); | ||
|  |     }, | ||
|  |     getAllResourceImages() { | ||
|  |         return glob | ||
|  |             .sync("res/**/*.@(png|svg|jpg)", { cwd: ".." }) | ||
|  |             .map((f) => f.replace(/^res\//gi, "")) | ||
|  |             .filter((f) => { | ||
|  |                 if (f.indexOf("ui") >= 0) { | ||
|  |                     // We drop all ui images except for the noinline ones
 | ||
|  |                     return f.indexOf("noinline") >= 0; | ||
|  |                 } | ||
|  |                 return true; | ||
|  |             }); | ||
|  |     }, | ||
|  | 
 | ||
|  |     getAllAtlasImages() { | ||
|  |         return glob.sync("res_built/atlas/*.png", { cwd: ".." }).map((s) => s.replace("res_built/atlas/", "res/")); | ||
|  |     }, | ||
|  | 
 | ||
|  |     getAllSounds() { | ||
|  |         return glob.sync("res_built/sounds/**/*.mp3", { cwd: ".." }).map((s) => s.replace("res_built/sounds/", "res/sounds/")); | ||
|  |     }, | ||
|  | 
 | ||
|  |     getVersion() { | ||
|  |         return trim(fs.readFileSync(path.join(__dirname, "version")).toString()); | ||
|  |     }, | ||
|  | 
 | ||
|  |     /** | ||
|  |      * @param {string} url | ||
|  |      * @param {string} commitHash | ||
|  |      */ | ||
|  |     cachebust(url, commitHash) { | ||
|  |         return "/v/" + commitHash + "/" + url; | ||
|  |     }, | ||
|  | }; |