Ultimate Amiga

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 2 [3] 4   Go Down

Author Topic: Hacking: What next??!  (Read 25122 times)

0 Members and 2 Guests are viewing this topic.

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #30 on: May 20, 2014, 03:28:40 PM »

I've double checked and they seem right? (although there is one small mistake I will fix)

Are you sure you are familiar with how to use them?

 monster.colours is a list of possible palettes, each entry of which are four bytes long.
Code: [Select]
00 00 07 08 | 00 03 04 0E | 00 08 04 0E | 00 05 06 0E | 00 09 0A 0B | 00 09 0C 0B | 00 0A 0B 0D | 00 0B 0D 0E | 00 0C 0B 0D | 00 02 .... errr.
The first entry, I call "palette -1" because it is used only on the Illusion creatures.
Code: [Select]
00 00 07 08
- colour 0 becomes colour entry 0
- colour 4 becomes colour entry 0
- colour 8 becomes colour entry 7  (blue)
- colour C becomes colour entry 8 (another blue)


The next entry is palette number 0, and is used on the most basic (grey) summon creature

Code: [Select]
00 03 04 0E
- colour 0 becomes colour entry 0
- colour 4 becomes colour entry 3 (mid grey)
- colour 8 becomes colour entry 4 (lightest grey)
- colour C becomes colour entry E (white)

I think I may have left-off some bytes though, as I don't seem to have enough entries above, but the entries are definitely correct.

The file Summon.colours (or any other mosnter name.colours) then tells you which palette to use for each "level" (or 'grade') of Summon.... this is how I know the files are right, because this one is really easy to spot!

Code: [Select]
00 01 02 03 04 05 06 07
For the lowest grade summon, use palette entries 0 (mostly grey)
For the number 1 grade summon, use palette entries 1 (mostly blue/grey)
For the number 2 grade summon, use palette entries 2 (mostly green)
etc. etc.

For the other monsters, they aren't quite as sequential, but the principle is the same.

You should bare in mind though, that a Grade 0 monster, does not relate to a level 0 monsters.... each one has its own "starting offset" value, i.e. they might not start changing colour until level 3 etc.

Hope this helps
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #31 on: May 20, 2014, 03:48:14 PM »

monsters.colours I have accidentally made 26 bytes in length.

I *think* it should be 38 (maybe less)

the correct full set of values are:

Code: [Select]
00 00 07 08 | 00 03 04 0E | 00 08 04 0E | 00 05 06 0E
00 09 0A 0B | 00 09 0C 0B | 00 0A 0B 0D | 00 0B 0D 0E
00 0C 0B 0D | 00 02 03 04 | 00 08 04 0D | 00 05 06 0D
00 07 08 04 | 00 07 08 0D

:)
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #32 on: May 20, 2014, 05:35:17 PM »

Thanks to the disassembly of the 68k source by BruceUncle, I've made some interesting finds.

I was right, that there is some hard-coding going on to determine if a character is placed in the central position:

Code: [Select]
009728 cmpi.b #$15,-$0017(a3)
00972E beq.s lbC009750
009730 cmpi.b #$16,-$0017(a3)
009736 beq.s lbC009750
009738 cmpi.b #$40,-$0017(a3)
00973E beq.s lbC009750
009740 cmpi.b #$67,-$0017(a3)
009746 bcc.s lbC009750

There is also some similar code which would allow me to have any special characters I produce to respond with a "special" name... like Zendik names himself as lord of creation.  There is also again similar code that tells Zendik to 'hold' the permit which he drops.

Now, I really like the idea of having one special character like this per tower. The problem is, this cannot be added to my editor, and therefore cannot be added to other (non amiga) versions, without writing bespoke code... thankfully, the code required isn't that difficult, and using WHDload to create unique routines for this purpose would actually make this quite easy....

however,  I am concerned about the impact of such a heavy edit, and wondered what the thoughts of 'the public' were?

Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

MadMunky

  • Forum Mod
  • A600
  • *****
  • Karma: 2
  • Offline Offline
  • Gender: Male
  • Posts: 244
Re: Hacking: What next??!
« Reply #33 on: May 20, 2014, 05:35:39 PM »

Thanks Horace my mistake, I'll check and try again :)
Logged

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #34 on: May 20, 2014, 10:53:32 PM »

I have been watching far too much Game of Thrones....

Character $11 adapted to have their own name text... (yes, i had to write new code into the game for this)

I am going to need some help form BruceUncle though to be sure i put it into an area that wont be wiped. (preferably i would like to expand the executeable size slightly)
« Last Edit: May 20, 2014, 10:55:20 PM by Hungry Horace »
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

MadMunky

  • Forum Mod
  • A600
  • *****
  • Karma: 2
  • Offline Offline
  • Gender: Male
  • Posts: 244
Re: Hacking: What next??!
« Reply #35 on: May 21, 2014, 09:29:34 AM »

Looking good!

Looks like your be busy now :) unfortunately the stuff Bruce posted means nothing too me :( I'm hopeful Bits data will be more to a format I can understand but this is all excellent

Logged

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #36 on: May 21, 2014, 09:52:08 AM »

well... I am thinking, it is possible that some code can be shared between Amiga and ST versions, however, this will depend heavily on memory locations, and whether there is any "spare" room in the game binaries to do this.


MadMunky - I think you may have sent me it before, but do you have the main game binary from the ST version at all you can send me? I do not mind if it is a cracked version either.


I am thinking I will however maybe sacrifice the idea of having Book of Skulls work on both machines, in favour of having a more involved update/mod, unless there are any strong objections to this?

It would be perfectly possible to write some code that looks for the correct ASM and translates it back into useable parameters to be read by an editor or your remake
(so you would know that there are names for characters 10,1A,40 etc, and they are connected to specific text.) and this is something I will allow for by adhering to specific "rules" in my new game code.



Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

MadMunky

  • Forum Mod
  • A600
  • *****
  • Karma: 2
  • Offline Offline
  • Gender: Male
  • Posts: 244
Re: Hacking: What next??!
« Reply #37 on: May 21, 2014, 10:23:24 AM »

I cant remember what I gave you before :(

I've attached the ST Blood files but they look like they are compressed, I honestly cant remember how/if I uncompressed them before :(

Or maybe I did a memory snap shot and extracted the data (attachment is not a zip but raw ST as I had to rename it to upload)
Logged

MadMunky

  • Forum Mod
  • A600
  • *****
  • Karma: 2
  • Offline Offline
  • Gender: Male
  • Posts: 244
Re: Hacking: What next??!
« Reply #38 on: May 21, 2014, 12:34:52 PM »

Horace are you able to find anything in the code about how many hit points are assigned to which monster level?
Logged

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #39 on: May 21, 2014, 01:00:39 PM »

Horace are you able to find anything in the code about how many hit points are assigned to which monster level?

I would need to understand the "unpacked" monster data... which if $10 in length.

it contains the monsters location, type, current status ie. are they attacking, or communicating etc) , their direction, what object they hold and various other bits like this.
 
It must also contain their hit-points, which will be assigned during the "unpacking" (which it think is done when you enter each tower)

If I had this block understood more, I could start looking at what happens in the unpack process....

Labeling up the ASM source code should make this much easier, so I am hoping BruceUncle can give me some pointers as to how to add new labels to his resource file.
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

MadMunky

  • Forum Mod
  • A600
  • *****
  • Karma: 2
  • Offline Offline
  • Gender: Male
  • Posts: 244
Re: Hacking: What next??!
« Reply #40 on: May 21, 2014, 07:40:12 PM »

Horace: good find on the other thread I didn't want to pollute it with comments so will post here,

Also do you know why the characters stats have the Spell points set to say 9 for blodwyn but as soon as the game starts this gets changed to 6, do you know if there was any reasoning to this.
Logged

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #41 on: May 21, 2014, 08:58:54 PM »

Horace: good find on the other thread I didn't want to pollute it with comments so will post here,

Also do you know why the characters stats have the Spell points set to say 9 for blodwyn but as soon as the game starts this gets changed to 6, do you know if there was any reasoning to this.

no idea yet, but it will be easy enough to find the code that does it.... like the monsters it needs the character stats section correctly mapped out though.
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #42 on: May 21, 2014, 09:34:41 PM »

Code: [Select]
01 23 11 0D 0D 23 23 1F 1F 06 09 05 80 00 00 00
C7 FF 00 00 00 00 07 09 02 00 03 00 00 00 00 00

This is Blodwyn's starting data, unedited from the champions.stats file.

immediately after starting the game (as blodwyn) the data becomes this:

Code: [Select]
01 23 11 0D 0D 23 23 1F 1F 06 06 05 80 00 00 00
C7 00 00 FF 00 00 07 09 02 E0 03 00 0B FF 00 00

in the other thread I will post the code that does this. The address which this happens at is stored in that code at A4 .... this is important. Each of the above items is then referenced like this:   

0(a4) = first byte above (level)
5(a5) = 6th byte (stamina) 
a(a5) = 10th byte (magic)

we should really have an understanding of what every byte means in the 'live' data. maybe the code can give some insight into this.

From what i can see, it simply moves the value from the 11th byte, to the 10th byte address... rendering the value of '9' for Blodwyn's magic as meaningless. (unless the value is 'read' for some purpose prior to this routine)
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

MadMunky

  • Forum Mod
  • A600
  • *****
  • Karma: 2
  • Offline Offline
  • Gender: Male
  • Posts: 244
Re: Hacking: What next??!
« Reply #43 on: May 21, 2014, 09:45:01 PM »

We already know what pretty much all of this does it's attack timers and cool down timers,xp and amount of spells owed by the fairy :)

It's only this value we don't really understand
« Last Edit: May 21, 2014, 09:46:40 PM by MadMunky »
Logged

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Hacking: What next??!
« Reply #44 on: May 21, 2014, 09:49:46 PM »

can you provide that info here please? It might help me understand the code more.

I am trying to work out a few bits atm, but i still have a lot of blanks

Some of it is probably the same with the monsters too :)
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

Pages: 1 2 [3] 4   Go Up
 

TinyPortal 2.2.2 © 2005-2022