diff --git a/source/funkin/util/Constants.hx b/source/funkin/util/Constants.hx index a93578c20..c8df8f3d2 100644 --- a/source/funkin/util/Constants.hx +++ b/source/funkin/util/Constants.hx @@ -22,10 +22,11 @@ class Constants #if debug public static final GIT_HASH = funkin.util.macro.GitCommit.getGitCommitHash(); + public static final GIT_BRANCH = funkin.util.macro.GitCommit.getGitBranch(); static function get_VERSION():String { - return 'v${Application.current.meta.get('version')} (${GIT_HASH})' + VERSION_SUFFIX; + return 'v${Application.current.meta.get('version')} (${GIT_BRANCH} : ${GIT_HASH})' + VERSION_SUFFIX; } #else static function get_VERSION():String diff --git a/source/funkin/util/macro/GitCommit.hx b/source/funkin/util/macro/GitCommit.hx index 14c68639a..35700e2f2 100644 --- a/source/funkin/util/macro/GitCommit.hx +++ b/source/funkin/util/macro/GitCommit.hx @@ -31,5 +31,31 @@ class GitCommit return macro $v{commitHashSplice}; #end } + + public static macro function getGitBranch():haxe.macro.Expr.ExprOf + { + #if !display + // Get the current line number. + var pos = haxe.macro.Context.currentPos(); + var branchProcess = new sys.io.Process('git', ['rev-parse', '--abbrev-ref', 'HEAD']); + + if (branchProcess.exitCode() != 0) + { + var message = branchProcess.stderr.readAll().toString(); + haxe.macro.Context.info('[WARN] Could not determine current git commit; is this a proper Git repository?', pos); + } + + var branchName:String = branchProcess.stdout.readLine(); + trace('Current Working Branch: ${branchName}'); + + // Generates a string expression + return macro $v{branchName}; + #else + // `#if display` is used for code completion. In this case returning an + // empty string is good enough; We don't want to call git on every hint. + var branchName:String = ""; + return macro $v{branchName}; + #end + } } #end