Friday, January 28, 2011

Corona Simulator shortcut

Dear Blog,

I decided that I am going to use Ansca Corona to develop a game I'm working on vs. Airplay SDK. This LUA language is soo much easier than C++. I still would love to have my games programmed in C++, but for just me, it'll take too long to get to my final destination. So, LUA it is! Anyway, here is a quick batch file that I like to keep in my projects directory so all I have to do is drag the folder to this batch file, or type in the name of the porject I'm working on.

simulate.cmd

@echo off
echo -------------------------
echo Shortcut to LUA Simulator
echo -------------------------
echo.

SET coronaSimulator=%ProgramFiles(x86)%
IF "%coronaSimulator%" == "" SET coronaSimulator=%ProgramFiles%
SET coronaSimulator=%coronaSimulator%\Ansca\Corona Simulator\Corona 

Simulator.exe

IF NOT [%1] == [] GOTO PROCEED
SET /P simulateTarget=Enter name of your project? 

:PROCEED
IF NOT [%simulateTarget%] == [] SET simulateTarget="%simulateTarget%"
SET simulateTarget=%1%simulateTarget%\main.lua

IF NOT EXIST %simulateTarget% GOTO MESSAGE
start "Corona Simulator" "%coronaSimulator%" %simulateTarget%
GOTO END

:MESSAGE
echo Project does not exist: %simulateTarget%
pause

:END