Jump to content

Jason777

Member
  • Posts

    908
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by Jason777

  1. It's all possible, though, you would only be able to make it look like Link was dual weidling without any sort of ASM or C-Hack. Also, the keyblade model import was already done by Sanguinetti:
  2. Jason777

    BladeBeam

    Just wondering but why wouldn't you want to use the blade beam used by the fierce diety? Just curious.
  3. Hey there, Fiction. Long time no see
  4. Hmm.. I still have found no clues after a quite a bit of searching with google. I might as well post my Makefile: ####################################### # Sword of Sages -- OOT Debug ROM # ####################################### # Sooner or later, I will need to integrate this into a ROM for the final patch of the Light Temple MOD PROGRAM = Sword_of_Sages PARTS = $(PROGRAM).o # Directories N64BIN = ../root/bin # Environment variables CC = $(N64BIN)/mips64-gcc LD = $(N64BIN)/mips64-ld OBJCOPY = $(N64BIN)/mips64-objcopy CHEAT = $(N64BIN)/nemucheat BINCODE = $(N64BIN)/bin2code # Flags LDFLAGS = -T $(PROGRAM).x -L . CFLAGS = -fno-builtin -std=gnu99 -nodefaultlibs -march=vr4300 -mtune=vr4300 -I../include -I. $(NOBUILTIN) -Os -mabi=32 -mno-gpopt # CFLAGS Which use -fno-builtin and -nodefaultlibs #CFLAGS = -fno-builtin -std=gnu99 -nodefaultlibs -march=vr4300 -mtune=vr4300 # -I../include -I. $(NOBUILTIN) -Os -mabi=32 -mno-gpopt #CFLAGS seen in a shittload of spinout's code #CFLAGS = -G 0 -O3 --std=gnu99 -mtune=vr4300 -march=vr4300 # Compile binary all: $(PROGRAM).bin $(BINCODE) $(PROGRAM).bin 80600000 codes.txt $(CHEAT) "Sword_of_Sages" 1 > final.txt $(PROGRAM).bin: $(PROGRAM).elf $(OBJCOPY) $(PROGRAM).elf $(PROGRAM).bin -O binary $(PROGRAM).elf: $(PARTS) $(LD) -o $(PROGRAM).elf $(PARTS) $(LDFLAGS) clean: rm *.o *.elf *~ *.bin final.txt -vf EDIT: While I'm at it, here's my (shitty) source code: /********************************** * Sword of Sages -- OOT DEBUG * **********************************/ #include <mips.h> #define CURRENT_B_BUTTON_ITEM 0x8015E6C8 #define CURRENT_ANIMATION 0x80224764 #define CURRENT_LINK_XYZ 0x802245D4 #define CURRENT_TUNIC_RGB 0x802246FC #define ACTOR_SPAWN_CNST 0x80213C44 #define GLOBAL_CONTEXT 0x80212020 /* Code Snippet borrowed from other people, mainly spinout and ZZT32 */ u16 ActorSpawn(u32 const_1, u32 const_2, u16 Actor, f32 fx, f32 fy, f32 fz, u16 rx, u16 ry, u16 rz, int Variable); union FloatU32 { f32 f; u32 u; }; typedef struct { union FloatU32 x; union FloatU32 y; union FloatU32 z; } CoordU; typedef struct { u32 something; u32 some_RAM_pointer; u32 ani_off; u32 two[2]; f32 noFrames; f32 current_f; f32 speed; } RAM_Animation; /* End of Code Snippet */ void _start (void) { asm volatile("la $gp, _gp"); /* I saw this in every single one of Frauber's and (some of) ZZT's hacks... It seems to be necessary to "ensure that the data (ie, #define values, static variables, etc) will be loaded correctly" */ u8 *B_Button_Item = (void*)CURRENT_B_BUTTON_ITEM; RAM_Animation *Link_Animation = (void*)CURRENT_ANIMATION; CoordU *Link = (void*)CURRENT_LINK_XYZ; u8 *Tunic_RGB = (void*)CURRENT_TUNIC_RGB; u8 Valid_Sword = 0x7A; u32 Valid_Animation[29] = { /* Shielding and Defensive */ 0x04002518, 0x04002520, 0x04002588, /* Slashing */ 0x04002890, 0x04002898, 0x040028A0, 0x040028A8, 0x040028C0, 0x040028D0, 0x04002978, 0x04002A98, 0x04002B48, 0x04002B50, 0x04002C70, /* Stabbing */ 0x040024C8, 0x04002548, 0x04002560, 0x040028E0, 0x04002908, 0x04002980, 0x04002B88, 0x04002B98, /* Jump Attack */ 0x04002900, 0x04002A60, 0x04002AD0, /* Spin Attack and Finisher */ 0x04002940, 0x040029C0, 0x04002B28, 0x04002CD0 }; /* Check if the item on the B-Button is the Biggoron's Sword */ if (*B_Button_Item == Valid_Sword) { /* Use a for loop to cycle through all the possible animations */ for (int Index = 0; Index < 29; Index++) { /* If the current animation is equal to whatever element in the array that the "Valid_Animation" is equal to, it is a vaild animation */ if (Link_Animation->ani_off == Valid_Animation[Index]) { /* Change tunic color to white */ *Tunic_RGB = 0x04; /* Rotational values my change if I can find where Link's rotation is stored in the RAM*/ /* TODO: New animation -- Turn off Nayru's Love if running */ if (Index == 0 || Index == 1 || Index == 2) { /* SHIELDING : Spawn Nayru's Love */ ActorSpawn(ACTOR_SPAWN_CNST, GLOBAL_CONTEXT, 0x00F4, Link->x.u, Link->y.u, Link->z.u, 0, 0, 0, 0x0000); } if (Index == 22 || Index == 23 || Index == 24) { /* JUMP ATTACK : Spawn and shoot an Ice Arrow */ ActorSpawn(ACTOR_SPAWN_CNST, GLOBAL_CONTEXT, 0x010B, Link->x.u, Link->y.u, Link->z.u, 0, 0, 0, 0x0000); } if (Index == 3 || Index == 4 || Index == 5 || Index == 6 || Index == 7 || Index == 8 || Index == 9 || Index == 10 || Index == 11 || Index == 12 || Index == 13) { /* SLASH : Spawn and shoot a Fire Arrow */ ActorSpawn(ACTOR_SPAWN_CNST, GLOBAL_CONTEXT, 0x010A, Link->x.u, Link->y.u, Link->z.u, 0, 0, 0, 0x0000); } if (Index == 14 || Index == 15 || Index == 16 || Index == 17 || Index == 18 || Index == 19 || Index == 20 || Index == 21) { /* STAB : Spawn and shoot a Light Arrow */ ActorSpawn(ACTOR_SPAWN_CNST, GLOBAL_CONTEXT, 0x010C, Link->x.u, Link->y.u, Link->z.u, 0, 0, 0, 0x0000); } if (Index == 25 || Index == 26 || Index == 27 || Index == 28) { /* SPIN : Spawn Din's Fire */ ActorSpawn(ACTOR_SPAWN_CNST, GLOBAL_CONTEXT, 0x009F, Link->x.u, Link->y.u, Link->z.u, 0, 0, 0, 0x0000); } } } } /* Inline MIPS ASM to jump to the return address */ asm volatile("jr $ra"); } To tell you the truth, I'm not sure if I'm writing inline assembly in the correct fashion.
  5. This is really starting to piss me off... So I made a hack in C programming language (OOT Debug) for a custom item I'm making for a personal project. I'm finally near completion and I decide to try to compile the hack along with its hook. It seems that it can run through the compiler correctly, but when the object(s) pass into the linker the script fails to complete. Here's what happens when I run the makefile: palacios@palacios-PC /c/n64tree-win32/Sword_of_Sages $ make ../root/bin/mips64-gcc -fno-builtin -std=gnu99 -nodefaultlibs -march=vr4300 -mtu ne=vr4300 -I../include -I. -Os -mabi=32 -mno-gpopt -c -o Sword_of_Sages.o Swo rd_of_Sages.c ../root/bin/mips64-ld -o Sword_of_Sages.elf Sword_of_Sages.o -T Sword_of_Sag es.x -L . Sword_of_Sages.o: In function `_start': Sword_of_Sages.c:(.text+0x50): undefined reference to `memcpy' Sword_of_Sages.c:(.text+0x50): relocation truncated to fit: R_MIPS_26 against `m emcpy' make: *** [Sword_of_Sages.elf] Error 1 As far as I can tell, and I'm pretty damn confident, I made no such use of anything with the term "memcpy." Maybe it's a library? Perhaps, MinGW (GCC for windows) is making some unwanted optimizations? I suppose I could try checking .text section of the compiled object. Anyone who cares to help me, thanks.
  6. I may not be available all the time (college and helping with one other project) but I would like to contribute anything I can to this project.
  7. A sequel would be awesome... Didn't you have work for a sequel already done? I seem to remember something on glitchkill that hinted at that.
  8. I downloaded and burned the demo but the full game is a whole different story... hell no; the developers put a lot of effort into the creation of this game and I only feel it's necessary to show respect and pay a measley price. And if someone's gonna complain about the price then you obviously didn't prepare for this release
  9. Holy fuck. I'm deciding whether or not download this or wait less than 12 days for the game to come out...
  10. Wow... I see so many similarities between this game and OoT & TP. Did I see Elden Bridge and the Mirror of the Twilight? *Goes and replays Twilight Princess*
  11. Nice to see people taking stabs at modding/hacking MM. Makes me wanna start modding again..
  12. Sounds like your day couldn't get much better, heh. Happy birthday!
  13. I'm beginning to see what xdaniel's getting at; it doesn't bother me much, though. I think it still looks great!
  14. So I'm back with the same model as seen above. I can import it just fine with Obj2Area but SharpOcarina causes the game to crash while stuck on the loading screen. Could it be because of what Acraith said?: ^^ I wouldn't think so... I want to try and keep from having to upload the model but if it's an absolute must to figure out what the problem is, I will.
  15. Jason777

    Model_Convert.py

    May I ask why you would want to use such an old program when there are so many better ones like revisions 1-13 of obj2area and SharpOcarina?
  16. Does anyone here play Phantasy Star Online Blue Burst? On the ULTIMA servers? I've been pretty bored lately and decided to pick this game up after 2 years of not playing. Be warned, though... I'm a pretty low level By the way, does anyone know if the SCHTHACK servers are still up?
  17. Yes, I know all about that blue & white polygons mumbo jumbo and can assure you that my model has its faces correctly reversed and "white". Anyways, the issue is not about collision (well, not entirely), the problem is the weird number of mesh groups and polygon types. EDIT: After a little bit of tinkering with my model, I got seperate polygon types working where they're supposed to be. I still have graphical errors with the textures in the preview but I can manage with that. Also, I still have a billion mesh groups in that one room in the picture above... it's probably model related. ANOTHER EDIT: I figured out why I was getting so many mesh groups. It seems that the PRO8 Exporter makes groups of polygons that all "touch" or are connected by vertices. For example, we see this: Each one of the platforms (none of them are connected to another poly): 6 The turret top (it isn't actually touching any other poly): 1 A doorway (due to my lazy modelling, it isn't connected to any other poly): 1 What's left (Everything else are all in connected in some way): 1 Total number of mesh groups within that room: 9 ^^ And we see on the screen that there are a total of 9 mesh groups... And I see the exact same thing happening in a few other rooms which makes me even more sure that that is the problem.
  18. So today was the first day I tried to use SharpOcarina... major confusion. I know the mesh maps and collision of my model import because I had done it a couple of months ago with Obj2Area. I have read the readme but still am a little confused so I'll come to this thread to post my questions: In the mesh scene, I separated each room by grouping and exporting each individual one with SketchUp PRO8's exporter. I had even made groups of certain textures within rooms I would like to edit individually for things such as translucency, backface-culling, exits, and climable collision. Here's some pictures of what I'm talking about: Groups of each individual room- Grouping of two textures within the turret- With the collision scene, I had read somewhere earlier that the model HAD to be one group in the model (or somewhere along those lines). Inside the group, I included groups for exit and climable collision just in-case because Obj2Area used to seperate polygon types by components and groups. More pictures: Grouping the entire collision scene- Grouping exits and other collision types- So after exporting individual rooms of the mesh scene and the entire collision scene, I proceed to importing with SharpOcarina.... And I get this: In one room I get a bunch of "Mesh[X] Group1 Model"- way more than I remember grouping. I also get a few missing textures in the preview- And I can't see that exit collision I want so dearly in another room- Perhaps it's because I grouped each individual room?... I don't know what I'm doing wrong. NOTE: Collision- 4034 Faces Mesh- 4921 Faces
  19. I don't usually play 2D Zelda games (much less mods) but this one has caught my interest.. I look foward to a trailer.
  20. Jason777

    Hooking Code...

    Thanks for spelling things out for me, spinout. So if I wanted my code to always be executed, I would try to hook into a function/routine that is always running?
  21. I personally loved Twilight Princess. Anyways, Skyward Sword just seems to be getting better and better with every detail.
  22. Jason777

    Hooking Code...

    So after awhile of studying source code by a few hackers (spinout, frauber, ZZT, Hectamatatortron), I made a practice hack in C (originally C++ but I wasn't so sure g++ could be made to target MIPS...) and now I come to the issue of creating a hook. I don't quite understand what a hook is other that the fact that it "hooks" into the memory to execute the code. How would I create one for printing text in the most efficient way possible? Thanks for any help.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.