Search found 35 matches

by Jaberwocky
May 28th, 2020, 5:48 am
Forum: Graphics/GPU
Topic: GTE beginner questions
Replies: 1
Views: 8634

Re: GTE beginner questions

I actually made progress on this! I figured out, that when the Z Axis of my sprite is 0, then the it will be twice the original size. So I set the Z to 1 and set the SetGeomScreen to 1. Now it works! I think this is related to the perspective calculation (h/Sz)? Where h is the distance to the screen...
by Jaberwocky
May 27th, 2020, 5:52 am
Forum: Graphics/GPU
Topic: GTE beginner questions
Replies: 1
Views: 8634

GTE beginner questions

Heyho :D I started reading and playing around with the GTE - and as always I run into various problems. (I wonder why am I always the guy asking those things >o<) My plan is to display a simple 2D rectangle with a texture, with all the GTE stuff happening but with a rotation and translation of 0 - a...
by Jaberwocky
May 27th, 2020, 5:28 am
Forum: Sound/SPU
Topic: Desperation about Sounds/SPU
Replies: 15
Views: 27164

Re: Desperation about Sounds/SPU

For some reason the forum is still messed up for me :c I use a different browser now... VAG streaming sounds difficult xO I should be happy with XA I guess. However... some games do have an intro music for there songs which will not be looped. How can I create such a thing? Having 2 XA files? One co...
by Jaberwocky
May 12th, 2020, 4:34 am
Forum: Sound/SPU
Topic: Desperation about Sounds/SPU
Replies: 15
Views: 27164

Re: Desperation about Sounds/SPU

For some reason the design of the forum and website is totaly broken for me .w. I have no idea why and if it is related to the cloudflare protection? It makes it difficult to read thingy cause... it's now kinda a text file... Back to topic :D The longer audio loop thing caught my attention :> How wo...
by Jaberwocky
May 11th, 2020, 6:36 pm
Forum: Sound/SPU
Topic: Desperation about Sounds/SPU
Replies: 15
Views: 27164

Re: Desperation about Sounds/SPU

But where would I find that file in PSYQ? If I search for XATUT.DOC I don't find it. I'm just curious where to pick that file up and if there are other files like that explaining other things. Also... I wonder: When I'm doing the XA-Streaming there is no chance to also load a different file from CD ...
by Jaberwocky
May 8th, 2020, 5:09 am
Forum: Sound/SPU
Topic: Desperation about Sounds/SPU
Replies: 15
Views: 27164

Re: Desperation about Sounds/SPU

Where does the PDF actually come from? Since it seems to not be a part of the PSYQ.
Are there more PDFs like that?
by Jaberwocky
May 6th, 2020, 8:04 am
Forum: Sound/SPU
Topic: Desperation about Sounds/SPU
Replies: 15
Views: 27164

Re: Desperation about Sounds/SPU

Thank you for the video rama3! This is actually a really good explanation :D Since my desperation back then I managed to get CDDA and XA to run - however this was more following the examples and such. Today I tried it a bit more detailed and I have two questions about this: 1.) Following the example...
by Jaberwocky
May 2nd, 2020, 8:03 pm
Forum: Input/Output
Topic: Controller refuses to vibrate
Replies: 4
Views: 10928

Re: Controller refuses to vibrate

I did looked into the examples of Sony but they never have a forced wait of 3 frames... I will try making a minimal programm now for just making the controller vibrate... Edit: Seems like this is really a timing issue - if I add printf statements in my striped down code, it will not vibrate unless I...
by Jaberwocky
May 2nd, 2020, 2:37 am
Forum: Input/Output
Topic: Controller refuses to vibrate
Replies: 4
Views: 10928

Re: Controller refuses to vibrate

Thank you for the answer - sadly I did not fully understand it... Which callback do you mean? What do I have to check for complition? By now I changed my code to this: bool setupVibration() { u_char ActuatorAlign[] = {0x0, 0x1, 0xFF, 0xFF, 0xFF, 0xFF}; if(PadInfoMode(this->port,InfoModeCurExID,0)) {...
by Jaberwocky
May 1st, 2020, 7:32 am
Forum: Input/Output
Topic: Controller refuses to vibrate
Replies: 4
Views: 10928

Controller refuses to vibrate

Hey everyone :D Yeees I have another question again and yeeeeeeees I have no idea why it is not behaving. I have a DualShock controller being in the "digital mode" and I want to make actuators to well uhh vibrate? So I followed some example code I found in the PSYQ folders. When starting m...
by Jaberwocky
May 1st, 2020, 7:15 am
Forum: Miscellaneous & Off Topic
Topic: PSX emulators and printf
Replies: 3
Views: 13177

Re: PSX emulators and printf

Yeah I learned now that the BIOS plays a role in supporting the printf.

I actually tried the Duckstation with the wrong BIOS and was like "TTY Output" is not working... Well with the right BIOS (ps-30e) it worked finally x3

I will try pcsxr as well! Thank you both :3
by Jaberwocky
April 28th, 2020, 6:48 pm
Forum: Miscellaneous & Off Topic
Topic: PSX emulators and printf
Replies: 3
Views: 13177

PSX emulators and printf

Hey everyone :3 not sure if this is the right part of the forum. However... I wonder which PSX emulator do show the things I print ouf with "printf". I need this for development and therefore used the No$PSX emulator where this feature worked totaly fine. However, the No$PSX emulator has p...
by Jaberwocky
April 7th, 2020, 5:25 pm
Forum: Graphics/GPU
Topic: Allocating an Ordering Table with calloc3/malloc3
Replies: 2
Views: 14732

Re: Allocating an Ordering Table with calloc3/malloc3

Sadly - your suggestions didn't fixed the problem I still have the same issue as before. Also.... Using your code gave me the same base address for the heap, like __HeapBase did - size were different however... Edit: Please end me x.x" The riddle is solved now - it was me all along! Before allo...
by Jaberwocky
April 7th, 2020, 4:21 am
Forum: Graphics/GPU
Topic: Allocating an Ordering Table with calloc3/malloc3
Replies: 2
Views: 14732

Allocating an Ordering Table with calloc3/malloc3

Hey everyone, I have a silly question again >o< Don't get mad at me! For my "game" I prepared an OrderingTable for some elements by declaring globaly: #define OT_LENGTH 10 GsOT Wot[2]; GsOT_TAG zsorttable[2][1 << OT_LENGTH]; int activeBuffer; And setting them up with: // set OT resolution ...
by Jaberwocky
April 7th, 2020, 4:07 am
Forum: Sound/SPU
Topic: Not getting CD-DA to work...
Replies: 4
Views: 15153

Re: Not getting CD-DA to work...

Shadow wrote: April 3rd, 2020, 9:58 am Always test it in an emulator before burning a CD-R (it'll save you time, money and discs).
I highly recommend using XEBRA and NO$PSX to test your programs.
I couldn't agree more! I mostly use NO$PSX - I had issues with XEBRA.... but I forgot what I was >O> I need to double check
by Jaberwocky
April 3rd, 2020, 5:00 am
Forum: Sound/SPU
Topic: Not getting CD-DA to work...
Replies: 4
Views: 15153

Re: Not getting CD-DA to work...

Thank you Shadow! That tool is really awesome :D

I tried burning the ISO with CDBurnerXP - but sadly this didn't worked out. I hoped to get rid of Alcohol120%. However, still an awesome tool x3
by Jaberwocky
March 15th, 2020, 7:13 pm
Forum: Sound/SPU
Topic: Not getting CD-DA to work...
Replies: 4
Views: 15153

Not getting CD-DA to work...

Heyho, so I'm having issues with sounds again - seems like I'm not best friends with it. However, compared to two month ago I was able to at least play VAG and XA files - so I made some progress. Now I wanted to try CD-DA but... I fail and I have no idea why. I grabbed a .mp3 file and converted it t...
by Jaberwocky
January 13th, 2020, 3:26 am
Forum: Sound/SPU
Topic: Desperation about Sounds/SPU
Replies: 15
Views: 27164

Re: Desperation about Sounds/SPU

There's no way your 4MB file can be played like that. It simply won't fit in RAM. Instead, you can use CD audio or XA audio to stream from disk. These streams can't be modified with the SPU synth features, they're basically just pass-through. Are there any examples or tutorials to learn that? All I...
by Jaberwocky
January 11th, 2020, 3:56 am
Forum: Sound/SPU
Topic: Desperation about Sounds/SPU
Replies: 15
Views: 27164

Re: Desperation about Sounds/SPU

After calming down I decided to try the code examples of the PSYQ regarding the sound. I hope to get there VB files running, maybe I understand enough to answer my questions....

Help and tips are still welcome of course xO
by Jaberwocky
January 9th, 2020, 8:13 am
Forum: CD-ROM
Topic: Best practice - Putting data on a CD-ROM
Replies: 6
Views: 17300

Re: Best practice - Putting data on a CD-ROM

Thank you once more!
Your answer really helped me! I'm not skilled enough for tackling any form of compression yet, but I at least have some form of feeling how I should arrange my files now.

Thank you x3