Search found 138 matches

by Vorrtexx
Tue Nov 11, 2003 2:56 am
Forum: Programming Discussion
Topic: Please, please help me... :0(
Replies: 16
Views: 751

Does the mp3 play in a seperate thread when it's initialized?
if so would the

Code: Select all

mp3_start("/cd/test.mp3", 1);
not need to go outside the loop?
I've never tried playing mp3 through the DC so I don't know.
by Vorrtexx
Fri Nov 07, 2003 2:47 pm
Forum: Programming Discussion
Topic: Path string
Replies: 6
Views: 345

thanks BlueCrab, knew there was a better way :)
by Vorrtexx
Fri Nov 07, 2003 1:35 pm
Forum: Programming Discussion
Topic: Path string
Replies: 6
Views: 345

here's one way. char *path; path = new char[20 + strlen(i)] ; strcpy(path,"/cd/background/"); strcat(path,i) ; strcat(path,".png"); printf(path) ; delete []path ; where 20 is the length of "/cd/background/" + ".png" + the terminating char. I think there's a wa...
by Vorrtexx
Sun Nov 02, 2003 5:19 am
Forum: Programming Discussion
Topic: Wildcard Syntax
Replies: 4
Views: 319

well I've never tried PHP, or if u can even use wildcards in it like what you're doing there, but if it has, I presume it'd go something like this. if($hostname=="*dyn.optonline.net") { print "you use comcast"; } or if($hostname=="%dyn.optonline.net") { print "you ...
by Vorrtexx
Sat Nov 01, 2003 7:58 am
Forum: Programming Discussion
Topic: Can someone help me please
Replies: 7
Views: 392

you're missing the png library in your makefile: on this line: D:\DevKitDc\bin\gcc -o Test.elf romdisk.o startup.o Test.c -I D:\DevKitDc\include -I D:\DevKitDc\kernel\arch\dreamcast\include -ml -m4-single-only -O1 -fno-builtin -fno-strict-aliasing -fomit-frame-pointer -nostdlib -L D:\DevKitDc\lib -L...
by Vorrtexx
Fri Oct 31, 2003 2:48 am
Forum: Programming Discussion
Topic: STLport - anyone ever had any luck?
Replies: 39
Views: 1695

Use Case diagrams are used in the design process of a system. They basically help show a broader picture of what is going on, identifying the states a process can go through, and in some cases, show where the user interacts with the system. It can then be taken another step further, by selecting one...
by Vorrtexx
Mon Oct 27, 2003 4:08 am
Forum: Programming Discussion
Topic: Visual Studio 6
Replies: 5
Views: 325

I think you might be doing a "compile and execute". I can't fully remember how the old dcdevkit worked but I think it used to build an ELF or BIN file. just try Building or "Rebuild" the project and that might do it. VC6 by default will try to execute an exe when the program is R...
by Vorrtexx
Fri Oct 10, 2003 3:25 am
Forum: Programming Discussion
Topic: STLport - anyone ever had any luck?
Replies: 39
Views: 1695

I think the same discussion came up under this topic recently

http://www.dcemulation.org/phpBB/viewtopic.php?t=39750
by Vorrtexx
Fri Oct 03, 2003 3:36 am
Forum: Programming Discussion
Topic: G2 BUS FIFO
Replies: 2
Views: 307

have you tried looking at the g2bus.c file in KOS. there's references to it there but it doesn't say much about it. this is what I got from dcdev: The G2 bus (AICA, expansion port) has a 32-byte write FIFO to both AICA RAM and external devices (that sit on the expansion port). Bit 0 of this register...
by Vorrtexx
Sat Sep 27, 2003 4:39 am
Forum: Programming Discussion
Topic: Borland C++ and DC
Replies: 2
Views: 417

I think I gave this a quick try a couple of weeks back, cos in Borland, you can specify the include paths, and lib paths like Dev-C++, which I couldn't find the option in MSVC. I didn't have the time to set it up right but I'm sure its possible. if you could just link the borland compile to the make...
by Vorrtexx
Thu Sep 25, 2003 2:59 am
Forum: Programming Discussion
Topic: IRIS .9 AND OTHER STUFF
Replies: 9
Views: 661

Maybe set "t" to be a greater value than (timer +7) outside the loop, then when you come into it, the if statement will return true.
by Vorrtexx
Tue Sep 23, 2003 1:17 pm
Forum: Programming Discussion
Topic: SDL 2D graphics tutorial
Replies: 62
Views: 3435

If dovoto's thing was re-made with 1.1.9 I don't see any reason to mess with the commandline (assuming you have access to MSVS). But maybe that's because I'd rather work on a project than work towards working on a project. tbsp: I think I may have wrote an updated App Wizard for MSVC using KOS 1.1....
by Vorrtexx
Fri Sep 19, 2003 5:02 pm
Forum: Games and Software Hacking, Prototypes, and Devkits Discussion
Topic: DC-IE on PAL Dreamcast?
Replies: 22
Views: 1259

I've got NTSC of Confidential Mission, but my PAL Lightguns don't work for it. if I used this, would the guns work then. or is it just something got to do with the game itself? on an off topic, do lightguns work when using a VGA box, and using a PC Monitor for displaying? I'm guessing no but am I wr...
by Vorrtexx
Sat Sep 13, 2003 5:49 am
Forum: Programming Discussion
Topic: Let there be light! ...I hope
Replies: 6
Views: 511

Lighting isn't supported in KGL at the moment. although last time I checked was in KOS 1.1.9 so unless it's changed since then, but I don't think it has.
by Vorrtexx
Tue Sep 09, 2003 4:03 pm
Forum: Programming Discussion
Topic: About SDL programming
Replies: 21
Views: 1242

by Vorrtexx
Mon Aug 25, 2003 2:50 pm
Forum: Programming Discussion
Topic: Using Cygwin With VC++ 6
Replies: 1
Views: 248

Using Cygwin With VC++ 6

created a new Custom Project Setup File to use Visual C++ 6 with Cygwin for anyone who might think it's useful.
For full instructions read the Readme.txt file inside the zip file.

To download:
http://vorrtexx.ionichost.com/

For use with KOS 1.2.0
by Vorrtexx
Fri May 02, 2003 8:56 am
Forum: Programming Discussion
Topic: -
Replies: 2
Views: 341

follow the links provided at this post http://www.consolevision.com/forums/YaBB.cgi?board=dcdev;action=display;num=1033424733 You can download a working cygwin and sh4-arm compiler there. And this weekend I will probably build a wizard for VC++ 6 that can be used with Cygwin, so you won't need the D...
by Vorrtexx
Sun Apr 06, 2003 5:46 am
Forum: Programming Discussion
Topic: KOS under windows and VC6++
Replies: 15
Views: 911

KOS under windows and VC6++

For anyone who wants to use KOS 1.1.9 with VC6++ in windows you can use this little DC Project Wizard I Created. Basically The same thing at the Pern Project but I updated it for KOS 1.1.9 enabled romdisk usage more easily and allows you to select between using c files or cpp files. you can grab it ...