Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
33 user(s) are online (27 user(s) are browsing Forums)

Members: 2
Guests: 31

cloverskull, salass00, more...

Support us!

Headlines

Forum Index


Board index » All Posts




Re: New Tunenet? New DVplayer?
Just can't stay away
Just can't stay away


@Curty

Yes, but not SHARED AHI, tunenet does not allow other audio sources to access AHI at the same time.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


AROS HD installer ready for testing
Supreme Council
Supreme Council


ncafferkey writes on AROS-exec :

Quote:

The new HD installer is now included on the nightly ISO and is ready for testing. However, there's currently a bug in either Wanderer or FFS that needs to be worked around. After startng the installer, you need to quit Wanderer before continuing (unless you're not going to format any partitions).

Be even more careful than usual with this version of the installer, ie. don't expose a machine with unbacked-up valuable data to it. It should preserve all existing partitions if requested, but no one has tested this so far besides me.

Vacca foeda. Sum, ergo edo

Mr Bobo Cornwater
Go to top


Re: New Tunenet? New DVplayer?
Just popping in
Just popping in


@Severin

If you read back through you will see this ahi unit 0-3 and music support has been added.

A1XE G4 800mhz,512mb,Radeon9200,SonyDRU-510A and 800a, Esi Juli@,Sil680,WiFi.
Go to top


Re: gfx program
Not too shy to talk
Not too shy to talk


@Antique

try perfectpaint. it's free and not too bad

amiforce

byebye...

Go to top


Re: New Tunenet? New DVplayer?
Just can't stay away
Just can't stay away


@bean

[quote]Without giving a date all I can say is we are close to releasing a preview version of TuneNet for all to sample. When I say "preview" I mean a usable development version which people can also start building skins with, but with missing features, the odd bug and such like.[\quote]

Ahhh... you mean "Microsoft style"

Oh, any chance of tunenet ever sharing audio instead of hogging it? All other progams share AHI, eg. DVPlayer or AmigaAmp let AmIRC play it's beeps and farts, whereas tunenet blocks them.

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: gfx program
Just can't stay away
Just can't stay away


@Antique

Try TVPaint V3.51 (it's free), ImageFX 4.5 (not free), Art Effect V3 (free), Art Effect 4 (15 euros)...

For arteffect look at Alinea's site, for TVPaint, iirc there's a copy on the Amiga Univercity site, Art Effect... well... loads of dollars :(

Amiga user since 1985
AOS4, A-EON, IBrowse & Alinea Betatester

Ps. I hate the new amigans website. <shudder>
Go to top


Re: gfx program
Home away from home
Home away from home


@Swisso

Is that a free program or do i need $? Hehe

Go to top


Re: DosBox speed
Quite a regular
Quite a regular


@corto

OK I set up DosBox with the new settings and I am looking forward to see if it really improves the speed.

Go to top


Re: gfx program
Not too shy to talk
Not too shy to talk


@Antique
Art Effect works well, I am using the version that came with the Amithlon CD.

A1XEG4 PPC 7457 1.3GHz
A-Eon X5000
CDTV!!
Go to top


gfx program
Home away from home
Home away from home


I have i picture i need to edit a bit. Is there a program that works under os4 and supports 24bit gfx that i can use? Something similar to dpaint etc.?

Go to top


Re: Basilisk 2
Home away from home
Home away from home


@LiveForIt

If you need to betatest it on my marvelous SE then say so.

Can help you test the networking too.

Go to top


Re: Basilisk 2
Just can't stay away
Just can't stay away


@LiveForIt

Quote:
That?s way decided to change the format in configuration file todisk /dev/device/unit/devicename

Cool!

Philippe 'Elwood' FERRUCCI
Sam460ex 1.10 Ghz
http://elwoodb.free.fr
Go to top


Re: AmigaOS 4.0 datatypes, AISS and MUI
Just popping in
Just popping in


@thomas

MUI have "nothing to talk" in drawing topic. ;) MUI only calls a method MUIM_Draw, which is used for drawing procedures.

The code is simply as possible; this is the init part in
MUIM_Setup:

dto = NewDTObject(data->fileName,
DTA_GroupID, GID_PICTURE,
PDTA_DestMode, PMODE_V43,
OBP_Precision, PRECISION_EXACT,
PDTA_Remap, TRUE,
TAG_DONE);
if(dto)
{
struct image *gi = NULL;
struct BitMapHeader *bmh;

SetAttrs(dto,
PDTA_Screen, (ULONG)scr,
PDTA_UseFriendBitMap , TRUE,
TAG_DONE);

if (gi = (struct image *)MAllocVecPooled(sizeof(struct image)))
{
GetDTAttrs(dto, PDTA_BitMapHeader, (ULONG)&bmh, TAG_DONE);

gi->picObject = dto;
gi->imageFlags |= DFLG_Datatypes;
data->width = bmh->bmh_Width;
data->height = bmh->bmh_Height;


and draw procedure called in MUIM_Draw:

void drawDTPic(Object *dto, struct RastPort *rp, ULONG x, ULONG y, ULONG width, ULONG height)
{
struct BitMapHeader *bmh = NULL;
struct BitMap *bm = NULL;
BOOL success = FALSE;

if (DoMethod(dto, DTM_PROCLAYOUT, NULL, 1))
{
GetDTAttrs(dto, PDTA_BitMapHeader, (ULONG)&bmh, TAG_DONE);
if (bmh)
{
GetDTAttrs(dto, PDTA_DestBitMap, (ULONG)&bm, TAG_DONE);
}
}

if (DataTypesBase->lib_Version >= 44)
{
APTR handle = ObtainDTDrawInfoA(dto, TAG_DONE);
if (handle)
{
success = DrawDTObjectA(rp, dto,
x, y, width, height,
0, 0, TAG_DONE);
ReleaseDTDrawInfo(dto, handle);
}
}

if (!success)
{
APTR mask = NULL;
GetDTAttrs(dto, PDTA_MaskPlane, (ULONG)&mask, TAG_DONE);
if (mask)
{
BltMaskBitMapRastPort(bm, 0, 0, rp,
x, y, width, height,
ABC|ABNC|ANBC, mask);
}
else
{
BltBitMapRastPort(bm, 0, 0, rp, x, y,
width, height, ABC|ABNC|ANBC);
}
}
}

Go to top


Re: Basilisk 2
Home away from home
Home away from home


@pjs

Quote:
I was wondering, how does Basilisk's networking support
compare with Shapeshifter's?


I think works in the same way; I know there some limitations, on what type of packages that can be sent, for example I don?t think ping works, general TCP/IP packages should work, but I have not tested this.

(NutsAboutAmiga)

Basilisk II for AmigaOS4
AmigaInputAnywhere
Excalibur
and other tools and apps.
Go to top


Re: Basilisk 2
Home away from home
Home away from home


@pjs

I have not tested network..

I'm currently adding RDB support to Basilisk 2, because I hate the current format where you need to add start block, and size of partition in blocks, in Amiga world the partitions are defined as LowCyl, HiCyl, this means that you need to calculate where the partition starts.

Start in blocks = LowCyl * heads * sectors_per_track.
Size in blocks = (HiCyl ? LowCyl) * Heads * sectors_per_track

It?s so easy to do some thing wrong, and when you repartition your disk, you might get big problems whit the old format.

That?s way decided to change the format in configuration file to

disk /dev/device/unit/devicename

device=a1ide.device
unit=0
devicename=mac0

(NutsAboutAmiga)

Basilisk II for AmigaOS4
AmigaInputAnywhere
Excalibur
and other tools and apps.
Go to top


Re: DosBox speed
Not too shy to talk
Not too shy to talk


@MamePPCA1

You could find advices on this page.

To swap to full screen mode, the special keys page tellls that you have to use alt-enter.

About speed, I looked at the sources yesterday and I suppose we can find many things to optimize.

Go to top


Re: AmigaOS 4.0 datatypes, AISS and MUI
Not too shy to talk
Not too shy to talk


@SZAMAN

That's strange. OS3 datatypes don't support alpha, OS4 datatypes do. So you should have a border around the images on OS3, but not on OS4.

Perhaps MUI does not support alpha blending and the images have a grey background. So you don't notice it on OS3, although it's there.

Bye,
Thomas

Go to top


AmigaOS 4.0 datatypes, AISS and MUI
Just popping in
Just popping in


What is difference between programing AmigaOS 3.x and AmigaOS 4 datatypes? My friend use the same code in MUI aplication + AISS pictures (PNG+alpha). AmigaOS 3.x - everything work fine, AmigaOS 4 - I have black border around images. Hmm

Go to top


Re: Hyperion's general Amiga-products -page
Just popping in
Just popping in


@ssolie

Quote:
due to my insane A1 addiction.


How many do you have!?!?

Go to top


Re: New Tunenet? New DVplayer?
Just popping in
Just popping in


@bean

I haven't seen the version at the Italian show, but I have a suggestion for the current version.

When you are playing a local file (like an MP3) there are buttons for play and stop, but not pause. I know there is a key combo and it can be done from the menu, but it would be nice if there was a button too.

Go to top



TopTop
« 1 ... 6629 6630 6631 (6632) 6633 6634 6635 ... 7284 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project