summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2007-10-21 17:09:44 +0000
committerglx <glx@openttd.org>2007-10-21 17:09:44 +0000
commit4fdfd76b3b22ebb7c4d8c33a89c33224c8bf6d12 (patch)
treef707aa2af6663322dce46aaafabfc2ae4981c969 /projects
parent68a1fbd4372103b004d443b000ee1c27c64ca05b (diff)
downloadopenttd-4fdfd76b3b22ebb7c4d8c33a89c33224c8bf6d12.tar.xz
(svn r11334) -Codechange: add hg detection to MSVC
Diffstat (limited to 'projects')
-rw-r--r--projects/determineversion.vbs57
1 files changed, 42 insertions, 15 deletions
diff --git a/projects/determineversion.vbs b/projects/determineversion.vbs
index c1c254fbd..4576e3b23 100644
--- a/projects/determineversion.vbs
+++ b/projects/determineversion.vbs
@@ -22,27 +22,33 @@ Sub UpdateFile(revision, version, cur_date, filename)
End Sub
Sub UpdateFiles(version)
- Dim cur_date
+ Dim WshShell, cur_date, revision, oExec
+ Set WshShell = CreateObject("WScript.Shell")
cur_date = DatePart("D", Date) & "." & DatePart("M", Date) & "." & DatePart("YYYY", Date)
- Dim revision
- If version = "norev000" Then
- revision = 0
- Else
- revision = Mid(version, 2)
- If InStr(revision, "M") Then
- revision = Mid(revision, 1, InStr(revision, "M") - 1)
- End If
- If InStr(revision, "-") Then
- revision = Mid(revision, 1, InStr(revision, "-") - 1)
- End If
- End If
+ revision = 0
+ Select Case Mid(version, 1, 1)
+ Case "r" ' svn
+ revision = Mid(version, 2)
+ If InStr(revision, "M") Then
+ revision = Mid(revision, 1, InStr(revision, "M") - 1)
+ End If
+ If InStr(revision, "-") Then
+ revision = Mid(revision, 1, InStr(revision, "-") - 1)
+ End If
+ Case "h" ' mercurial (hg)
+ Set oExec = WshShell.Exec("hg log -k " & Chr(34) & "svn" & Chr(34) & " -l 1 --template " & Chr(34) & "{desc}\n" & Chr(34) & " ../src")
+ If Err.Number = 0 Then
+ revision = Mid(OExec.StdOut.ReadLine(), 7)
+ revision = Mid(revision, 1, InStr(revision, ")") - 1)
+ End If
+ End Select
UpdateFile revision, version, cur_date, "../src/rev.cpp"
UpdateFile revision, version, cur_date, "../src/ottdres.rc"
End Sub
Function DetermineSVNVersion()
- Dim WshShell, version, url, oExec
+ Dim WshShell, version, url, oExec, line
Set WshShell = CreateObject("WScript.Shell")
On Error Resume Next
@@ -92,7 +98,6 @@ Function DetermineSVNVersion()
' And use svn info to get the correct revision and branch information.
Set oExec = WshShell.Exec("svn info ../src")
If Err.Number = 0 Then
- Dim line
Do
line = OExec.StdOut.ReadLine()
If InStr(line, "URL") Then
@@ -112,6 +117,28 @@ Function DetermineSVNVersion()
url = Mid(url, 1, InStr(2, url, "/") - 1)
version = version & Replace(url, "/", "-")
End If
+ Else
+ ' svn detection failed, reset error and try mercurial (hg)
+ Err.Clear
+ Set oExec = WshShell.Exec("hg tip")
+ If Err.Number = 0 Then
+ version = "h" & Mid(OExec.StdOut.ReadLine(), 19, 8)
+ Set oExec = WshShell.Exec("hg status ../src")
+ If Err.Number = 0 Then
+ Do
+ line = OExec.StdOut.ReadLine()
+ If Mid(line, 1, 1) <> "?" Then
+ version = version & "M"
+ Exit Do
+ End If
+ Loop While Not OExec.StdOut.atEndOfStream
+ End If
+ Set oExec = WshShell.Exec("hg branch")
+ If Err.Number = 0 Then
+ line = OExec.StdOut.ReadLine()
+ If line <> "default" Then version = version & "-" & line
+ End If
+ End If
End If
DetermineSVNVersion = version