Difference between revisions of "Dev"

From Game Research Wiki
Jump to navigation Jump to search
 
Line 38: Line 38:
Working Directory for build .\tmp\$(ProjectName)-$(Configuration)\
Working Directory for build .\tmp\$(ProjectName)-$(Configuration)\
/tmp
/tmp
</syntaxhighlight>
<syntaxhighlight lang="text">
program.exe
<target> //Target is always first!
-<options> //Cannot be stacked! Each option must start with a -
a //allow overwriting of files
b //keep case of letter (lower to upper)
c //specify output folder or file, must be followed by valid directory
z //Displays fun stuff
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 20:55, 8 October 2016

Output consistency examples

----npatool----
version: 1.0.6-ed6155c

Reading protected index...
Decoding index...
Processing index entries... 50 files found!
Extracting data...

1> music/0001.ogg [205125]

10/10 file(s) extracted!

OGG/1> SONG_04 [123123]
PNG/1> BG_125 [125125]

Source file stuff

///////////////////////////////////////////////////////////////////////////////////////////////////
//  Function:
//  Purpose:
///////////////////////////////////////////////////////////////////////////////////////////////////


Some coding styles I need to stick with to stay consistent are... g_ for global variables, p_ for pointers.

Target
 $(ProjectName)-$(Configuration)
Build Folder $(SolutionDir)\bin\
/bin
Source Folder
/src
Working Directory for build .\tmp\$(ProjectName)-$(Configuration)\
/tmp
program.exe
			<target> //Target is always first!
					-<options> //Cannot be stacked! Each option must start with a -
					 a //allow overwriting of files
					 b //keep case of letter (lower to upper)
					 c //specify output folder or file, must be followed by valid directory
					 z //Displays fun stuff