Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
142 user(s) are online (104 user(s) are browsing Forums)

Members: 0
Guests: 142

more...

Headlines

Forum Index


Board index » All Posts (rwo)




Re: Beta testing
Not too shy to talk
Not too shy to talk


@Spot

Well all my test (including mElite) had the gfx offset problem.

I just get a very small snake game, to test sdk.

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: Beta testing
Not too shy to talk
Not too shy to talk


Ohhh damn Spot tricked me!.

He ask my help with porting mElite, and foolish as I was, I said yes without thinking. (Another project diverting me from all the others)

For when we was finished fixing the errors, well ofcourse I wanted to test it :)

now here I realized that I did not have Qt install, damn.

Well time to fight with another project... project install Qt.

Well after downloading the huge archive and unpacking the 1gb files and running the install script.

after the reboot, and running the first test example.. I had to figure out why it did not work... well I fast figured out the sobjs: was missing... that only took 5min to fix.

then the next was to track down missing libs...

finally I was ready to start my game port...

yay it worked well sort of, and now here its where I turn it into a bug report... for all the graphics it place at 0,0 not taking into account the window dragbar and left window border... but the Mouse click look like it does that, so you have to click below and to the left of the graphics.

This was all install on a clean hd... so there was no previous install settings to bugger this up.

the next on the todo list is to figure out how to get the sdk working.

First post on the subject, Nice work alfkil :)

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: My last AmigaOS frontier
Not too shy to talk
Not too shy to talk


the way I learned C was to buy a beginners paperback book worth about 5 bugs.

and then you need to practice, over and over again... this is very time consuming.

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: DeCSS.plugin - installation requires hex editing?!?
Not too shy to talk
Not too shy to talk


hey Chris

to install you should just have to copy it into the plugin dir and restart DVPlayer.

Now you have another menu item where you can select Open DVD/VCD option.

Mine is the one with Amiga+S as shortcut... this was a bit of a mistake as that one is already used.

about the filename, I reorganised the source so much that is would be hard to update again if the orginal linux decss got updated... so I dident want to replace the orginal driver.

René

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: The Amiga Porting Team
Not too shy to talk
Not too shy to talk


Maybe a list of projects in progress so other coders like myself don't duplicate work.

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Jedi Outcast & Jedi Acadamy
Not too shy to talk
Not too shy to talk


Ohh nice things are happening

Activision and Raven are releasing this code for people to learn from and play with. This code is copyright Activision 2002. This source is released under GNU GPLv2.

http://sourceforge.net/projects/jedioutcast

http://sourceforge.net/projects/jediacademy

Now if I only had the time ;)

René

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: rwo still around here?
Not too shy to talk
Not too shy to talk


Hi whose

I'm still lurking around here :)

The old email address (ac@rebels.com) is no longer valid and really should be updated on os4depot.

My current email is renewolsen@gmail.com

you are welcome to use my source as you see fit (just release it under another name), it was released in the hopes others could use it.

If you have problems with lag.. I would sugest you create more USBIORequest, so you make sure the system always has a request waiting... having 3 iorequest for the interrupt endpoint would speed up the driver.

René

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: USB (DOT4) Printers & OS4.1 **Testing in Progress**
Not too shy to talk
Not too shy to talk


if you manage to open libusb.library, then manager_init has been run with success.

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: USB audio
Not too shy to talk
Not too shy to talk


Well I was not the coder on those drivers, so I can't say why there was not finished.

And I do no longer work on the Serion stack so I can't really say.

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: USB audio
Not too shy to talk
Not too shy to talk


Quote:

graffias79 wrote:
I thought USB audio was a generic protocol?


Yes Audio has a generic protocol but there are 2 drivers involved.

The Host Control Drivers (UHCI/OHCI/EHCI) that mangages data to and from the devices need to support 4 types of transfer (Control/Interrupt/Bulk/Isochonous).. the Serion stack do not support the last one yet.

Then there is the drivers that use the data like PTP, Mass Storage, HID, Printer and so on.. Those do not use Isochonous but Video and Audio need it, that is why those are not supported yet.

René

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: How to debug a 68k program?
Not too shy to talk
Not too shy to talk


ohh I see..

ya I have been trying AsmPro as well without luck..

have you tryed IExec's DebugPrintF ?.. i'm not sure the 68k jump table has included this function.

RWO

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


How to debug a 68k program?
Not too shy to talk
Not too shy to talk


Just wondering what the best way is to debug a 68k program where you have the asm source code.

Afkil how did you debug Napalm?

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: Serial device problems (68k assembler)
Not too shy to talk
Not too shy to talk


@alfkil

OpenDevice() puts the result in D0 but only as a byte (move.b d0)..

So you should really change your 'TST D0' to 'TST.B D0'.. for I expect phxass converts your 'TST D0' into 'TST.W D0' so it check to many bits..

As the 24 upper bits in D0 is trash from anywhere, and blacklisting it will only result it being run from a diffrent place and will ofcoase result in diffrent upper 24bits.

But if this change do not work I must say I don't have an idea whats is wrong.

Btw: what serial device do you open?

EDIT: Windows locked up, so I had to make a temp save


Edited by rwo on 2011/12/2 16:13:48
“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: Serial device problems (68k assembler)
Not too shy to talk
Not too shy to talk


Checking out you source again I found this...

acording to my old Autodoc it do not mention that the CreateMsgPort() returns the result in D0. Small chance this is wrong.

and you OpenDevice() ends with a TST D0, here you do not set the size it uses... if I remember correct ASM-Pro uses .w as default, this is wrong as the result is only a Byte size.. but that depends on the assembler you uses.

René

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: Serial device problems (68k assembler)
Not too shy to talk
Not too shy to talk


I can not see any errors, other than the posibility that your debug functions trashes the D0 Register.

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: Update 3 - things that have changed... and things that have not
Not too shy to talk
Not too shy to talk


I made the table.image class for one of my projects, and gave the source to Hypersion.

This class simple allocates a user definded rows and columns table where you can put text. You can think of it as a static spreadsheet or if you know HTML its works just like tabels.

Each cell here you can specify Text font, color, alignment.

I can't remember if I added Gfx support for the cells, it was on the todo list.

RWO

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: AmiSystemRestore - beta testers wanted!
Not too shy to talk
Not too shy to talk


Nice..

But why would you have it running all day? and why do you need to patch OS4?

RWO

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: Getting Napalm to run on AmigaOS 4.1.2?
Not too shy to talk
Not too shy to talk


alfkil what did you use to resource the binary? ira?

and what do you use to compile it again?

RWO

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: USB Printers & OS4.1 on Samflex **Beta driver at OS4depot**
Not too shy to talk
Not too shy to talk


I'm no longer involved with usb for os4.

And I never got finished with the 1284.4 printer support.

So this will no be included with the next os update.

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top


Re: Getting Napalm to run on AmigaOS 4.1.2?
Not too shy to talk
Not too shy to talk


If one would have a go at another 68k game

Here I can mention that UFO: Enemy unknown is rather system friendly..

I had a look at sevreal 68k games, and UFO is one of the nicer once. It uses intuition for screen and windows plus other stuff like disk font for text.

@alkfil
looking very much forward to testing your Napalm fix

“The best thing about a boolean is even if you are wrong, you are only off by a bit.”
Go to top



TopTop
« 1 2 3 (4) 5 6 7 ... 14 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project