| |
Jammer
Registered: Nov 2002 Posts: 1336 |
Release id #191551 : Kick Assembler V5.15
Any chances for passing string variable to program counter/memory block label? Would come really handy when I compile separate memory blocks with parametrized names, e.g. in some loop, reading names from the list for batch conversion. General goal is to use one script asm file to produce multiple output binaries that I plan to exomize each individually. If that's technically impossible, is there any reasonable workaround? I'm, sadly, not on friendly terms with makefiles ;) |
|
| |
Peacemaker
Registered: Sep 2004 Posts: 275 |
"General goal is to use one script asm file to produce multiple output binaries"
i am with you. would be fantastic to have such an option.
=) |
| |
Krill
Registered: Apr 2002 Posts: 2982 |
Quoting Jammerto exomize each individually To "exomize" meaning to use needlessly slow decompression* to shave off just a few bytes compared to much faster (de-)compression algorithms? =)
* Still need to check out v3.1. And sorry to Zagon. It's just that people using Exomizer by default when better fitting alternatives exist is a pet peeve of mine. It's really mostly useful for cracks or size-constrained one-filed demos, where minimum size counts. Not so much anywhere else. |
| |
Jammer
Registered: Nov 2002 Posts: 1336 |
My project is not that much depack-time critical ;) It's depacking game data actually which is cut into small chunks beforehand ;) Ranting on very packer doesn't add much to this particular thread, does it? :D |
| |
Krill
Registered: Apr 2002 Posts: 2982 |
Quoting JammerMy project is not that much depack-time critical ;) It's depacking game data actually which is cut into small chunks beforehand ;) Ranting on very packer doesn't add much to this particular thread, does it? :D Yes, sorry for off-topicness. I was ranting about lack of "-D" (if there really is one) to pass in macro (or equivalent semantics) from command line elsewhere. =D
Anyhow, using a faster packer can significantly improve (minimise) type-compile-test cycle turn-over times during development.
Then you can still switch to tightest compression (if needed) for release. :) |
| |
Jammer
Registered: Nov 2002 Posts: 1336 |
Quoting Krill-D (if there really is one) to pass in macro (or equivalent semantics) from command line elsewhere. =D
Kick Assembler includes variable parametrization from commandline but that most probably won't solve my particular problem :/ Which is dynamic output filename. |
| |
Krill
Registered: Apr 2002 Posts: 2982 |
Quoting JammerQuoting Krill-D (if there really is one) to pass in macro (or equivalent semantics) from command line elsewhere. =D
Kick Assembler includes variable parametrization from commandline but that most probably won't solve my particular problem :/ Which is dynamic output filename. You mean there is no "-o" CLI parameter... but the output filename is fixed in the source file or something? |
| |
Jammer
Registered: Nov 2002 Posts: 1336 |
Kick Assembler has one commandline directive which is particulary interesting for me:
-mbfiles
Instead of compiling one big binary, it compiles every memory block with its program counter set up as separate binary. I could actually make a loop in script that takes different input data files for conversion/compilation but it's practically useless when I cannot change output filename accordingly. Dunno, maybe I missed some functionality that Slammer has already provided :) |
| |
chatGPZ
Registered: Dec 2001 Posts: 11391 |
Quote:You mean there is no "-o" CLI parameter... but the output filename is fixed in the source file or something?
to me it sounds like he wants kickassembler to do what the makefile does normally. |
| |
Jammer
Registered: Nov 2002 Posts: 1336 |
Quoting Groepazto me it sounds like he wants kickassembler to do what the makefile does normally.
You bet I do ;) I'm actually thinking of one, probably easy workaround. Wish me luck :D
edit:
Right, I figured how to parametrize input file for one asm but it's still not as automatized as I wished ;)
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBackground01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBackground01.bin -log ItsUpToYou_Data_CharacterBackground01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBackground01.bin@0x7700 -o ItsUpToYou_Data_CharacterBackground01.exo
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBodyBase01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBodyBase01.bin -log ItsUpToYou_Data_CharacterBodyBase01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBodyBase01.bin@0x7700 -o ItsUpToYou_Data_CharacterBodyBase01.exo
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBody01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBody01.bin -log ItsUpToYou_Data_CharacterBody01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBody01.bin@0x7700 -o ItsUpToYou_Data_CharacterBody01.exo
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBody02.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBody02.bin -log ItsUpToYou_Data_CharacterBody02.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBody02.bin@0x7700 -o ItsUpToYou_Data_CharacterBody02.exo
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFaceBase01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFaceBase01.bin -log ItsUpToYou_Data_CharacterFaceBase01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFaceBase01.bin@0x7700 -o ItsUpToYou_Data_CharacterFaceBase01.exo
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFace01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFace01.bin -log ItsUpToYou_Data_CharacterFace01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFace01.bin@0x7700 -o ItsUpToYou_Data_CharacterFace01.exo
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFace02.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFace02.bin -log ItsUpToYou_Data_CharacterFace02.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFace02.bin@0x7700 -o ItsUpToYou_Data_CharacterFace02.exo
java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFace03.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFace03.bin -log ItsUpToYou_Data_CharacterFace03.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFace03.bin@0x7700 -o ItsUpToYou_Data_CharacterFace03.exo
|
| |
Slammer
Registered: Feb 2004 Posts: 416 |
Quote: Kick Assembler has one commandline directive which is particulary interesting for me:
-mbfiles
Instead of compiling one big binary, it compiles every memory block with its program counter set up as separate binary. I could actually make a loop in script that takes different input data files for conversion/compilation but it's practically useless when I cannot change output filename accordingly. Dunno, maybe I missed some functionality that Slammer has already provided :)
Another way of directing output to different files is by using segmnets. If you don't want to read all the details about setting them up, there is a one-liner you can use (It set it up, direct the content to a file and switches output to that segment.)
.segment File1 [outPrg="MyFile1.prg"]
*=$1000
.byte 1,2,3,4
.segment File2 [outPrg="MyFile2.prg"]
*=$1000
.byte 4,5,6,7
.segment Default // Restoring output to the standard file
I'm not sure it does what you wan't cos the segment names have to be unique so you can't put it in a macro, have it take an output filename and call it several times, etc. |
| |
Jammer
Registered: Nov 2002 Posts: 1336 |
Segments look really cool! However, not that close to comfy automatization I guess ;) What would suit problem the best is imho sth like:
.var filenamelist = List(all filename entries)
...
conversion loop with another filenames from the list:
.var filename = filenamelist.get(loop index)
.var importbitmap = LoadBinary(filename + ".tga")
...
some code to convert data and fill array with it
...
.pc = picturedata filename(index)
.fill 8 * rows * columns, bitmaparray.get(i)
.fill rows * columns, screenmaparray.get(i)
I miss a lot from actual code but you get the idea :) And then I compile binary with -mbfiles |
| |
Digger
Registered: Mar 2005 Posts: 438 |
@Jammer:
You can do it apart from the memory block name, it's not dynamic. Example (edited) from Norah:
.const twisterColors = List().add(peptoBright.get($8), peptoBright.get($7))
.const numFrames = 7
.var twisterFramesFiles = List()
.for (var i = 1; i <= numFrames + 1; i++) {
.const fileName = "assets/twister/sprites frame " + i + ".png"
.const file = LoadPicture(fileName, twisterColors)
.eval twisterFramesFiles.add(file)
}
.macro cutTwisterFrame(frame) {
.const file = twisterFramesFiles.get(frame - 1)
.for (var y = 0; y < layout.size(); y++) {
.for (var x = 0; x < layout.get(y).size(); x++) {
.eval twisterPointersList.add(toSpritePtr(*))
cutHiresSprite(file, x * 24, y * 21 + 6 - x)
}
}
}
.pc = *
cutTwisterFrame(1)
.pc = *
cutTwisterFrame(2)
...
|
| |
Jammer
Registered: Nov 2002 Posts: 1336 |
Another cool way but I guess my current approach seems more flexible and like less sweat to me ;) |