diff options
| author | Franklin Wei <git@fwei.tk> | 2017-04-29 18:21:56 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2017-04-29 18:24:42 -0400 |
| commit | 881746789a489fad85aae8317555f73dbe261556 (patch) | |
| tree | cec2946362c4698c8db3c10f3242ef546c2c22dd /apps/plugins/puzzles/src/wceinf.pl | |
| parent | 03dd4b92be7dcd5c8ab06da3810887060e06abd5 (diff) | |
| download | rockbox-881746789a489fad85aae8317555f73dbe261556.zip rockbox-881746789a489fad85aae8317555f73dbe261556.tar.gz rockbox-881746789a489fad85aae8317555f73dbe261556.tar.bz2 rockbox-881746789a489fad85aae8317555f73dbe261556.tar.xz | |
puzzles: refactor and resync with upstream
This brings puzzles up-to-date with upstream revision
2d333750272c3967cfd5cd3677572cddeaad5932, though certain changes made
by me, including cursor-only Untangle and some compilation fixes
remain. Upstream code has been moved to its separate subdirectory and
future syncs can be done by simply copying over the new sources.
Change-Id: Ia6506ca5f78c3627165ea6791d38db414ace0804
Diffstat (limited to 'apps/plugins/puzzles/src/wceinf.pl')
| -rw-r--r-- | apps/plugins/puzzles/src/wceinf.pl | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/src/wceinf.pl b/apps/plugins/puzzles/src/wceinf.pl new file mode 100644 index 0000000..4756f3c --- /dev/null +++ b/apps/plugins/puzzles/src/wceinf.pl @@ -0,0 +1,65 @@ +#!/usr/bin/perl + +# Perl script to generate a .INF file for building a Pocket PC .CAB +# archive of Puzzles. This has to be scripted so that it can read +# gamedesc.txt and automatically adjust to the current available +# set of puzzles. + +# Usage: +# +# $ ./wceinf.pl gamedesc.txt > puzzles.inf + +$desc = shift @ARGV; +open DESC, "<", $desc; +while (<DESC>) { + chomp; + @_ = split /:/; + push @exes, $_[1]; + $names{$_[1]} = $_[2]; +} +close DESC; + +print '[Version]'."\n"; +print 'Signature = "$Windows NT$" ; required as-is'."\n"; +print 'Provider = "Simon Tatham" ; full app name will be "<Provider> <AppName>"'."\n"; +print 'CESignature = "$Windows CE$" ; required as-is'."\n"; +print ''."\n"; +print '[CEStrings]'."\n"; +print 'AppName = "Puzzle Collection" ; full app name will be "<Provider> <AppName>"'."\n"; +print 'InstallDir = %CE8%\%AppName% ; "\Program Files\Games\Puzzle Collection" (default install directory)'."\n"; +print ''."\n"; +print '[CEDevice.x86]'."\n"; +print 'ProcessorType = 686'."\n"; +print ''."\n"; +print '[CEDevice.ARM]'."\n"; +print 'ProcessorType = 2577'."\n"; +print ''."\n"; +print '[SourceDisksNames.x86] ; CPU-dependent files'."\n"; +print '2 = ,"x86 Files",,.'."\n"; +print ''."\n"; +print '[SourceDisksNames.ARMV4] ; CPU-dependent files'."\n"; +print '2 = ,"ARM Files",,.'."\n"; +print ''."\n"; +print '[SourceDisksFiles]'."\n"; +for $exe (@exes) { + print $exe.' = 2'."\n"; +} +print ''."\n"; +print '[DefaultInstall]'."\n"; +print 'CopyFiles = PuzzleFiles'."\n"; +print 'CEShortcuts = Links'."\n"; +print ''."\n"; +print '[DestinationDirs]'."\n"; +print 'PuzzleFiles = 0, %InstallDir%'."\n"; +print 'Links = 0, %CE14%\Puzzles'."\n"; +print ''."\n"; +print ';File copy list.'."\n"; +print '[PuzzleFiles]'."\n"; +for $exe (@exes) { + print $exe."\n"; +} +print ''."\n"; +print '[Links]'."\n"; +for $exe (@exes) { + print '"'.$names{$exe}.'",0,'.$exe."\n"; +} |