English Amiga Board


Go Back   English Amiga Board > Search Forums

Showing results 1 to 21 of 21
Search took 0.01 seconds.
Search: Posts Made By: Csoft
Forum: Coders. C/C++ 02 September 2022, 22:34
Replies: 26
Views: 4,322
Posted By Csoft
Found!!! :cheese THIS was the problem: ...

Found!!! :cheese

THIS was the problem:

SetTaskPri(FindTask(NULL), TASK_PRIORITY);

At the start of the program I was setting the task priority to 127 in order to have full priority, removing...
Forum: Coders. C/C++ 02 September 2022, 21:08
Replies: 26
Views: 4,322
Posted By Csoft
Thank you for your kind support, but I think this...

Thank you for your kind support, but I think this is not the case. The problem is exactly the same even if I don't use ptplayer at all. (See my previous post...
Forum: Coders. C/C++ 01 September 2022, 23:34
Replies: 26
Views: 4,322
Posted By Csoft
According to WinUAE emulation, the floppy light...

According to WinUAE emulation, the floppy light remains always on even when the spin sound stops. Turns back off only when I quit my game and go back to CLI.
Forum: Coders. C/C++ 01 September 2022, 09:52
Replies: 26
Views: 4,322
Posted By Csoft
Must check this evening from WinUAE when I'll be...

Must check this evening from WinUAE when I'll be at home, showing floppy LEDs on FS-Uae requires a configuration procedure that is quite mad.
Forum: Coders. C/C++ 01 September 2022, 08:57
Replies: 26
Views: 4,322
Posted By Csoft
Yes, exactly.

Yes, exactly.
Forum: Coders. C/C++ 31 August 2022, 14:44
Replies: 26
Views: 4,322
Posted By Csoft
I'm not doing anything special with my sound...

I'm not doing anything special with my sound playing function, here it is

UWORD audioDmaBits[] = {
DMAF_AUD0,
DMAF_AUD1,
DMAF_AUD2,
DMAF_AUD3
};

/**
Forum: Coders. C/C++ 31 August 2022, 13:02
Replies: 26
Views: 4,322
Posted By Csoft
No. It's not. It seems pure madness. I tried the...

No. It's not. It seems pure madness. I tried the following:

1) I do NOT call Forbid() anymore.
2) I do NOT install my VBlank
3) I do NOT install CIA interrupt (ptplayer)
3) After all disk read...
Forum: Coders. C/C++ 31 August 2022, 11:47
Replies: 26
Views: 4,322
Posted By Csoft
I didn't disable the system VBlank, I removed...

I didn't disable the system VBlank, I removed completely my VBlank interrupt installation by commenting it.

This problem persists even if I don't disable the OS at all.

Probabily is the...
Forum: Coders. C/C++ 30 August 2022, 23:11
Replies: 26
Views: 4,322
Posted By Csoft
I'm puzzled. I tried to not stop the system with...

I'm puzzled. I tried to not stop the system with Permit(), I disabled the vblank interrupt but I have a mod playroutine that starts a CIA interrupt. I do the following:

Read everything I must read...
Forum: Music. Tutorials 10 August 2022, 14:25
Replies: 3
Views: 1,367
Posted By Csoft
Thumbs up Oh yes!!! Thank you very much!!!

Oh yes!!! Thank you very much!!!
Forum: Music. Tutorials 10 August 2022, 12:35
Replies: 3
Views: 1,367
Posted By Csoft
Protracker 2.3f, how to delete a sample?

Hi,

after over two decades I'm trying to create a music for a game with the classic Protracker 2.3f under fs-uae.

I loaded a sample in my module and now I want to delete it but I cannot find a...
Forum: Coders. C/C++ 22 June 2022, 17:03
Replies: 26
Views: 4,322
Posted By Csoft
I'm working on 3.0. No use of timer.device, but I...

I'm working on 3.0. No use of timer.device, but I DO use a vblank interrupt, yes. Could be this the source of the problem?
Forum: Coders. C/C++ 21 June 2022, 21:52
Replies: 26
Views: 4,322
Posted By Csoft
Simply this, with standard Amiga FFS, it keeps...

Simply this, with standard Amiga FFS, it keeps spinning forever:

FILE *fp = fopen(filename, "rb");
if (fp) {
fread(dest, sizeof(unsigned char), size, fp);
} else {
...
Forum: Coders. C/C++ 19 June 2022, 15:55
Replies: 26
Views: 4,322
Posted By Csoft
No, I'm not shutting down the system at all. I'm...

No, I'm not shutting down the system at all. I'm trying to keep everything OS friendly.
Forum: Coders. C/C++ 19 June 2022, 14:52
Replies: 26
Views: 4,322
Posted By Csoft
Floppy keeps spinning after fread

Hello all,

I'm developing a game in C, in my code I load assets from floppy with fread/fclose functions, it works, but the floppy keeps spinning even after the load is completed.

How can I...
Forum: Coders. Releases 30 May 2022, 00:44
Replies: 172
Views: 82,518
Posted By Csoft
This partially worked as I said in the second...

This partially worked as I said in the second email, it plays the sample without bad noises, but screws up the playback frequency/period of my sample, which is played with a very low frequency. I...
Forum: Coders. Releases 29 May 2022, 13:43
Replies: 172
Views: 82,518
Posted By Csoft
Hello guys, I'm working on a game written in...

Hello guys,

I'm working on a game written in C with a custom built framework I wrote. I'm adding a music to my game and I'm trying to use this fantastic ptplayer routine, but I don't want to use...
Forum: Coders. C/C++ 21 September 2021, 09:54
Replies: 4
Views: 1,541
Posted By Csoft
Thank you guys!!! I solved!!! Yes, I know...

Thank you guys!!! I solved!!!

Yes, I know that global variables are usually considered bad, but in my scenario there's a reason, I can always change my mind.

Thanks again!
Forum: Coders. C/C++ 21 September 2021, 09:00
Replies: 4
Views: 1,541
Posted By Csoft
Global struct problems with VBCC

Hello all,

I'm facing a weird problem with vbcc. I want to have a global struct on my project. I extracted the problem here.

struct.h

struct {
int a;
int b;
} myStruct;
Forum: Coders. Asm / Hardware 18 April 2021, 20:21
Replies: 2
Views: 759
Posted By Csoft
Thank you for your response. Don't...

Thank you for your response.



Don't know, I wait for the next vertical blank to point to the zero buffer.



Ok, I'll give it a try. But the other question remains: why fs-uae makes my...
Forum: Coders. Asm / Hardware 18 April 2021, 12:23
Replies: 2
Views: 759
Posted By Csoft
Exclamation Audio emulation fidelity on FS-Uae

Hello folks,

my first message here. I'm developing a little Amiga game in full 68k assembly. I've always coded on real hardware, this time for the first time I cross compiled targeting fs-uae...
Showing results 1 to 21 of 21

 
Forum Jump

All times are GMT +2. The time now is 11:32.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.14382 seconds with 10 queries