Headlines |
-
amiarcadia.lha - emulation/gamesystem
Aug 14, 2022
-
rnoeffects.lha - graphics/edit
Aug 14, 2022
-
shaderjoy.lha - graphics/viewer
Aug 14, 2022
-
lharchiver.lha - utility/archive
Aug 14, 2022
-
hexsee.lha - utility/filetool
Aug 14, 2022
-
blobwarsattrition.lha - game/action
Aug 13, 2022
-
arabic_console_devicepro2.lha - driver/input
Aug 11, 2022
-
kittymusicraft.library.lha - development/library
Aug 8, 2022
-
amosextension.library.lha - library/misc
Aug 8, 2022
-
luettjebookholler.lha - office/misc
Aug 6, 2022
|
|
|
|
AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 16:49
#1
|
Just popping in 
Joined: 2007/5/15 13:42 Last Login
: 2018/11/24 7:04
From Austria
Group:
Registered Users
|
Just to let you know that the SDK 53.29 is released, see http://www.hyperion-entertainment.biz/
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 17:37
#2
|
Just can't stay away 
Joined: 2012/8/14 13:51 Last Login
: 2021/5/11 21:26
From France
Group:
Registered Users
|
@Gazelle
Thank you for the information.
Installation was easy.
Except these new deprecations ;(
warning: 'p96AllocBitMap' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:44) warning: 'p96LockBitMap' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:47) warning: 'p96UnlockBitMap' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:48) warning: 'p96ReadPixelArray' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:61)
I will try the new menuclass !
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 18:12
#3
|
Just popping in 
Joined: 2007/5/15 13:42 Last Login
: 2018/11/24 7:04
From Austria
Group:
Registered Users
|
@zzd10h
Unified graphics.library API with built-in RTG support as the original Amiga designers intended.
Picasso96API.library/--background-- [...] Starting with graphics.library V54, the vast majority of Picasso96 is now redundant. The graphics.library has been expanded and extended to seemlessly handle the traditional native (ECS, AGA) chip sets as well as modern graphics cards (RTG). [...]
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 18:19
#4
|
Just can't stay away 
Joined: 2012/8/14 13:51 Last Login
: 2021/5/11 21:26
From France
Group:
Registered Users
|
@Gazelle
Yes, but I used it to handle alpha layer with p96AllocBitmap(RGBFB_ALPHA8 and/or RGBFB_A8R8G8B8) etc.
I will have to search how to do the same with AllocBitmap().
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 18:21
#5
|
Quite a regular 
Joined: 2006/11/22 17:57 Last Login
: 2021/3/5 11:21
From Italy, Rome
Group:
Registered Users
|
Fantastic!
I was trying some code with a native versione of gcc 4.9.1, and i was thinking about: i wonder if the new sdk would be available soon......
thank you to all involved.
|
Retired
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 18:54
#6
|
Quite a regular 
Joined: 2010/5/16 12:20 Last Login
: 2018/10/16 8:05
From Grimsby, UK
Group:
Registered Users
|
I'll be sure to check out the new AutoDocViewer later as I only recently commented on social media about the 'age' of the prior version. Hopefully the latest version makes use of the AISS set.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 20:35
#7
|
Just can't stay away 
Joined: 2006/11/30 11:30 Last Login
: Today 17:51
From Finland
Group:
Registered Users
|
@zzd10h Quote: warning: 'p96AllocBitMap' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:44) warning: 'p96LockBitMap' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:47) warning: 'p96UnlockBitMap' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:48) warning: 'p96ReadPixelArray' is deprecated (declared at /SDK/include/include_h/interfaces/Picasso96API.h:61)
The graphics.library equivalents for these functions are: AllocBitMapTags() LockBitMapTags() UnlockBitMap() ReadPixelArray()
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 20:38
#8
|
Quite a regular 
Joined: 2010/5/16 12:20 Last Login
: 2018/10/16 8:05
From Grimsby, UK
Group:
Registered Users
|
AutoDocViewer still at 0.99 from 2006.
Something else, during installation there were numerous MakeLink errors.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 20:39
#9
|
Just can't stay away 
Joined: 2006/11/30 11:30 Last Login
: Today 17:51
From Finland
Group:
Registered Users
|
@zzd10h Quote: Yes, but I used it to handle alpha layer with p96AllocBitmap(RGBFB_ALPHA8 and/or RGBFB_A8R8G8B8) etc.
I will have to search how to do the same with AllocBitmap().
Don't use the old, non-taglist AllocBitMap(). It is possible to pass RTG tags to it through an ugly API hack but there is no point in doing this when AllocBitMapTagList() is available since graphics.library 53.7.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 20:45
#10
|
Just can't stay away 
Joined: 2006/11/30 11:30 Last Login
: Today 17:51
From Finland
Group:
Registered Users
|
@djrikki Quote: Something else, during installation there were numerous MakeLink errors.
Did you install over an existing SDK install? If so, this is not supported. Either rename, move or delete the old SDK before installing the new one.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 20:48
#11
|
Home away from home 
Joined: 2006/12/4 23:15 Last Login
: 7/24 21:45
Group:
Registered Users
|
@djrikki
Salass00 beat me to it, you must not overwrite an old SDK.
Make a new one, then reinstall third party libs bit by bit as you needs them.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 21:26
#12
|
Just can't stay away 
Joined: 2012/8/14 13:51 Last Login
: 2021/5/11 21:26
From France
Group:
Registered Users
|
@salass00 Thank you very much for your advice. Changing p96AllocBitMap / p96LockBitMap / p96UnlockBitMap by AllocBitMapTags(BMATags_PixelFormat) / LockBitMapTags / UnlockBitMap works with alpha transparency
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 21:45
#13
|
Quite a regular 
Joined: 2010/5/16 12:20 Last Login
: 2018/10/16 8:05
From Grimsby, UK
Group:
Registered Users
|
Okay I re-installed from fresh, no Make Link errors or anything, however the AutoDocViewer is still 0.99 frm 2006 so didn't see any difference there.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 21:50
#14
|
Quite a regular 
Joined: 2010/5/16 12:20 Last Login
: 2018/10/16 8:05
From Grimsby, UK
Group:
Registered Users
|
Although it's now included in the distribution rather than having to go to os4depot.net it would also have been nice to see it upgraded as well.
I guess that I read the new story incorrectly.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 22:01
#15
|
Home away from home 
Joined: 2006/12/4 23:15 Last Login
: 7/24 21:45
Group:
Registered Users
|
@djrikki Quote: however the AutoDocViewer is still 0.99 frm 2006 so didn't see any difference there.
Although it's now included in the distribution rather than having to go to os4depot.net it would also have been nice to see it upgraded as well.
It was never part of the SDK contributions before.... What exactly did you need feature wise? No point just bumping the version 
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 22:11
#16
|
Just can't stay away 
Joined: 2012/8/14 13:51 Last Login
: 2021/5/11 21:26
From France
Group:
Registered Users
|
@djrikki
16/0.RAM Disk:> version SDK:CodeBench/Utilities/AutoDocViewer AutoDocViewer 1.13
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 22:11
#17
|
Quite a regular 
Joined: 2010/5/16 12:20 Last Login
: 2018/10/16 8:05
From Grimsby, UK
Group:
Registered Users
|
Off the top of my head... keyboard support is poor, cannot use arrow keys to traverse ListViews.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 22:20
#18
|
Quite a regular 
Joined: 2010/5/16 12:20 Last Login
: 2018/10/16 8:05
From Grimsby, UK
Group:
Registered Users
|
Thanks zzd10h, didn't know there was one included in Codebench. Never mine the one in the distribution, I've gone and developed my own AutoDocViewer from scratch anyway. 
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 22:23
#19
|
Just can't stay away 
Joined: 2012/8/14 13:51 Last Login
: 2021/5/11 21:26
From France
Group:
Registered Users
|
@os4 team
What is this CPU MACHINETYPE_CHUNYE in enMachineModel ?
Thank you for your reply...
edit : @djrikki your autodocviewer looks good.
|
|
|
|
Re: AmigaOS 4.1 Final Edition SDK available for download
|
Posted on: 2015/8/31 22:30
#20
|
Home away from home 
Joined: 2006/11/30 18:43 Last Login
: 8/14 22:03
From Norway
Group:
Registered Users
|
Nice to see a new sdk. 
|
X5000
|
|
Currently Active Users Viewing This Thread:
1
(
0 members
and 1 Anonymous Users
)
|
|
|