Last active
December 19, 2015 10:19
-
-
Save TLMcode/5940067 to your computer and use it in GitHub Desktop.
CSV to DDL at script execution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SetWorkingDir % A_ScriptDir | |
csvfile = testvars.csv | |
TestVar2 = ServerVariable1|| ServerVaraible2| ServerVariable3| | |
; Gui, 1: +AlwaysOnTop | |
Gui, 1: Font, S9 | |
Gui, 1: Add, Text, CDefault, Select Var1 | |
Gui, 1: Add, DDL, vDDL1, % CSVtoDDL(csvfile) | |
Gui, 1: Add, Text, CDefault, Select Server Variable | |
Gui, 1: Add, DDL, vDDL2, %TestVar2% | |
Gui, 1: Add, Button, wp Default gButtonLaunch, Launch | |
Gui, 1: Add, Button, wp Default, Stop | |
Gui, 1: Add, Checkbox, Checked vRcon, Use Debug Console | |
Gui, 1: Add, Text, CDefault, YOUR LAN IP: %A_IPAddress1% | |
Gui, 1: Show, h200 w325, Video Game Server Launcher | |
return | |
ButtonLaunch: | |
Gui, 1: Submit, NoHide | |
msgbox done | |
MsgBox, Path/VideoGame.exe %DDL1%%DDL2% | |
Sleep, 100 | |
if Rcon = 1 | |
MsgBox, Debugconsole.exe | |
Return | |
ButtonStop: | |
Gui, Submit, NoHide | |
Runwait, taskkill /im VideoGame.exe /f | |
Runwait, taskkill /im Debugconsole.exe /f | |
return | |
GuiClose: | |
ExitApp | |
CreateCSV(csvfile) | |
{ | |
If !FileExist(csvfile) | |
{ | |
Loop 5 | |
FileAppend, % "level" a_index "`,", % csvfile | |
} | |
} | |
CSVtoDDL(csvfile) | |
{ | |
If !FileExist(csvfile) | |
CreateCSV(csvfile) | |
FileRead, csv, % csvfile | |
Loop, Parse, csv, CSV | |
ddl.=A_LoopField (A_Index=1?"||":"|") | |
Return SubStr(ddl,1,-1) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment