List<string>Options=newList<string>{"All - show all available help","Using - end user help","Studio - show how to set up Turnkey in your Studio"};
intChoice=TurnkeyUtils.ReadInputInt("What type of help would you like to see?",Options,false);
switch(Choice)
{
case0:bShowAllHelp=true;break;
case1:bShowUsingHelp=true;break;
case2:bShowStudioHelp=true;break;
}
}
if(bShowUsingHelp||bShowAllHelp)
{
TurnkeyUtils.Log("To use Turnkey, you can just run it like you are now, and follow prompts to complete actions, or you can add commandline options to script as much as possible. For instance, you could see this message directly with:");
TurnkeyUtils.Log("To set up Turnkey in your studio, you will need to configure the location of SDK installers and other components for the rest of your developers/QA/etc to access. This is accomplished with one or more chained TurnkeyManifest.xml files.");
TurnkeyUtils.Log("The discovery starts with Engine/Build/Turnkey/TurnkeyManifest.xml, in the <AdditionalManifests> section. Note that more manifests can keep adding more into the chain, and they can be located on servers, not local storage.");
TurnkeyUtils.Log(" ... fill in more here ...");
TurnkeyUtils.Log("For information on how to setup a FileSource for a given platform, choose from the list below:");