Dev: Difference between revisions
Jump to navigation
Jump to search
Created page with "Output consistency examples <syntaxhighlight lang="text"> ----npatool---- version: 1.0.6-ed6155c built: Dec 4 2015 22:26:19 Reading protected index... Decoding index... Proc..." |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
----npatool---- | ----npatool---- | ||
version: 1.0.6-ed6155c | version: 1.0.6-ed6155c | ||
Reading protected index... | Reading protected index... | ||
Line 17: | Line 16: | ||
PNG/1> BG_125 [125125] | PNG/1> BG_125 [125125] | ||
</syntaxhighlight> | |||
Source file stuff | |||
<syntaxhighlight lang="cpp"> | |||
/////////////////////////////////////////////////////////////////////////////////////////////////// | |||
// Function: | |||
// Purpose: | |||
/////////////////////////////////////////////////////////////////////////////////////////////////// | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Some coding styles I need to stick with to stay consistent are... g_ for global variables, p_ for pointers. | Some coding styles I need to stick with to stay consistent are... g_ for global variables, p_ for pointers. | ||
<syntaxhighlight lang="text"> | |||
Target | |||
$(ProjectName)-$(Configuration) | |||
Build Folder $(SolutionDir)\bin\ | |||
/bin | |||
Source Folder | |||
/src | |||
Working Directory for build .\tmp\$(ProjectName)-$(Configuration)\ | |||
/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> |
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