Click Here
home features news forums classifieds faqs links search
6071 members 
Amiga Q&A /  Free for All /  Emulation /  Gaming / (Latest Posts)
Login

Nickname

Password

Lost Password?

Don't have an account yet?
Register now!

Support Amigaworld.net
Your support is needed and is appreciated as Amigaworld.net is primarily dependent upon the support of its users.
Donate

Menu
Main sections
» Home
» Features
» News
» Forums
» Classifieds
» Links
» Downloads
Extras
» OS4 Zone
» IRC Network
» AmigaWorld Radio
» Newsfeed
» Top Members
» Amiga Dealers
Information
» About Us
» FAQs
» Advertise
» Polls
» Terms of Service
» Search

IRC Channel
Server: irc.amigaworld.net
Ports: 1024,5555, 6665-6669
SSL port: 6697
Channel: #Amigaworld
Channel Policy and Guidelines

Who's Online
45 crawler(s) on-line.
 58 guest(s) on-line.
 0 member(s) on-line.



You are an anonymous user.
Register Now!
 Tpod:  20 mins ago
 Rassilon:  27 mins ago
 OlafS25:  52 mins ago
 21stcentury:  55 mins ago
 Kronos:  1 hr 5 mins ago
 bhabbott:  1 hr 33 mins ago
 amigakit:  1 hr 55 mins ago
 kolla:  2 hrs 34 mins ago
 nikosidis:  2 hrs 40 mins ago
 ppcamiga1:  2 hrs 55 mins ago

/  Forum Index
   /  Amiga Development
      /  AVD (Advanced Visual Developer) sponsorship
Register To Post

Goto page ( 1 | 2 Next Page )
PosterThread
amyren 
AVD (Advanced Visual Developer) sponsorship
Posted on 29-Oct-2010 22:49:29
#1 ]
Regular Member
Joined: 15-Jun-2005
Posts: 132
From: Norway

I was just reading some reports from AmiWest 2010 and got interested in the AVD news. It apears that the development of this visual developer suite have been restarted.

Curious about the project I followed the link to the homepage to read more.
http://bitbybitsoftwaregroup.com/index.php

The suite itself will cost $199.95 (preorder price) But there are also plans for a Free version. Also they have a sponsorship system to support the development of the free version, where you can donate monthly or on a one time if you wish.
The interesting about this donating plan is that everyone that donates and at some point reaches more than $200 in total, will get a copy of the suite.
So it is almost like preordering the package, but paying it in rates.

Apearently the suite is not ready for release yet, so I just donated $10/mnt to support the software development. Actually I dont even own an OS4 machine yet either. But hopefully I will someday, and then this software might be finished as well, and if I then still want it I can just donate the rest of the remaining amount.

Anybody else interested in this software?

 Status: Offline
Profile     Report this post  
JamieKrueger 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 1:28:29
#2 ]
Regular Member
Joined: 20-Jun-2004
Posts: 147
From: From the BITbyBIT lab: USA

@amyren

Thank you for supporting my efforts to resume full time
development on AVD and FreeAVD.

I am currently doing some final testing of the SDK Browser v2.0,
which I demoed at AmiWest, and will be releasing it as a standalone
FREEWARE version (hopefully sometime this weekend).

My primary focus after that is to complete development (to v1.0)
of the GUI Builder. With any luck that should be around 3 months
from now assuming I can continue to put in the hours on it.

I also plan to resume beta releases of AVD to current customers,
and development betas of FreeAVD to supporters like yourself.
(So when you pick up an OS4 machine, I'll have something for
you to start testing).

Best Regards,

Jamie Krueger
BITbyBIT Software Group LLC



_________________
Jamie Krueger
BITbyBIT Software Group LLC
jamie@bitbybitsoftwaregroup.com
PLEASE NOTE: I only speak for myself and my company,
and am not a spokesperson for Amiga Inc.

 Status: Offline
Profile     Report this post  
jahc 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 1:53:31
#3 ]
Elite Member
Joined: 30-May-2003
Posts: 2959
From: Auckland, New Zealand

@JamieKrueger

Hey Jamie :)

Can you walk me through how you'd create a GUI and then hook up events to it? Something like Visual Studio 2008ish would be pretty cool. I.e. drag a control (or gadget in this case) from the toolbox into the editor window, then select from the properties window the event you want to connect up, then double click there to have it created automatically..

Which GUI toolkits will be supported?

Will there be an entire IDE to go with the GUI builder? I'm quite liking Simon Archer's CodeBench lately.

Last edited by jahc on 30-Oct-2010 at 01:54 AM.

 Status: Offline
Profile     Report this post  
JamieKrueger 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 6:19:03
#4 ]
Regular Member
Joined: 20-Jun-2004
Posts: 147
From: From the BITbyBIT lab: USA

@jahc

AVD (Advanced Visual Developer) will provide a fully
integrated set of IDE tools, but will also be very open
to external control and thus still integrate very well
with your favorite editor, etc. I have been talking with
Simon about how to best integrate parts of AVD with
CodeBench, for example.

Here is an example screen shot of the GUI Builder.
It is a be old at this point, but it does give you some
idea of how things are shaping up.



AVD's GUI Builder supports all the OS4 gadget classes
that currently make up Intuition/Reaction. It allows you
to create and manipulate the live interface, rather than
a mock up of one.

Building interfaces with AVD's GUI Builder is extremely
quick an easy. You can setup a project, with a new interface
and new window and start adding layout groups and gadgets;
or jump right in and let AVD create all that for you by directly
clicking on a gadget object from the available list of classes.

So, a single click on a "button" object from a list, would create
a project, create a window for the project with a root layout
object, and then add a button object to it. One of the key features
of AVD's GUI Builder over that of visual builders on other platforms
is that is takes advantage of Reaction's dynamic layout engine.

Therefore you don't have to waste your time adjusting the position
and size of your interface components, the OS does this for you.
Instead, you can just focus on grouping your objects in vertical
or horizontal layout groups, and AVD's GUI Builder makes this
very quick and easy to do.

Once you have thrown a group of gadgets together into an
interface for your program, you will be able to assign the C
code to be executed when that gadget is clicked. Alternatively
you will be able to assign the execution of various external
scripting languages, like Shell commands, Arexx, Python, Rebol, etc.

It is important to note that AVD supports the automatic generation
of both a compiled C applications, and interpreted applications
written in XML and using a pre-built runtime system (I call GuiBits).

In the case of the C app, AVD generates the interface design and
other items you put together with the visual tools, into a one of the
ready to build AVD Template sources. You can modify any part of
the AVD Template source code as you wish as long as you respect
the designated areas that AVD may alter for you. You then built the
resulting code into an executable.

However, when you ask AVD to generate a "GuiBits" application,
it writes out a description of what your program should look like
and what it will do (using some internal logic and external scripting),
and sets it up to run by icon or command line. When run, the runtime
interpreter (GuiBits) reads in your program's description and creates
the application on the fly. For example, using this system you will
be able to create graphical interface frontends for command line only
programs, or even create preference apps with zero programming
knowledge.

In summary, AVD will provide many of the features of modern visual
development systems for other platforms, but with a very Amiga feel
and likely be even easier to use then other system costing a great
deal more.

Best Regards,

Jamie Krueger
BITbyBIT Software Group LLC

_________________
Jamie Krueger
BITbyBIT Software Group LLC
jamie@bitbybitsoftwaregroup.com
PLEASE NOTE: I only speak for myself and my company,
and am not a spokesperson for Amiga Inc.

 Status: Offline
Profile     Report this post  
kas1e 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 8:55:34
#5 ]
Elite Member
Joined: 11-Jan-2004
Posts: 3549
From: Russia

@JamieKrueger

All of this looks pretty cool. Is versions on your site of ADV + SDK browser are usable for now for real taks ? Or better to wait latest versions about which you talk ?

_________________
Join us to improve dopus5!
zerohero's mirror of os4/os3 crosscompiler suites

 Status: Offline
Profile     Report this post  
Trixie 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 8:56:00
#6 ]
Amiga Developer Team
Joined: 1-Sep-2003
Posts: 2090
From: Czech Republic

@JamieKrueger

Jamie's back in full strength!

_________________
The Rear Window blog

AmigaOne X5000/020 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition

 Status: Offline
Profile     Report this post  
cha05e90 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 9:19:13
#7 ]
Super Member
Joined: 18-Apr-2009
Posts: 1275
From: Germany

@JamieKrueger

Quote:
However, when you ask AVD to generate a "GuiBits" application,
it writes out a description of what your program should look like
and what it will do (using some internal logic and external scripting),
and sets it up to run by icon or command line. When run, the runtime
interpreter (GuiBits) reads in your program's description and creates
the application on the fly. For example, using this system you will
be able to create graphical interface frontends for command line only
programs, or even create preference apps with zero programming
knowledge.

Sounds *very* interesting.

_________________
X1000|II/G4|440ep|2000/060|2000/040|1000

 Status: Offline
Profile     Report this post  
Slayer 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 9:38:31
#8 ]
Regular Member
Joined: 4-Jan-2005
Posts: 416
From: New Zealand

what Amigavision was to multimedia AVS is to GUIs

does sound very interesting

_________________
~Yes I am a Kiwi, No, I did not appear as an extra in 'Lord of the Rings'~
1x AmigaOne X5000 2.0GHz 2gM RadeonR9280X AOS4.x
3x AmigaOne X1000 1.8GHz 2gM RadeonHD7970 AOS4.x

 Status: Offline
Profile     Report this post  
Birbo 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 11:21:24
#9 ]
Cult Member
Joined: 5-Apr-2007
Posts: 594
From: Zurich, Switzerland

@jamie

Good to see a developement like this.

Thanks Jamie for your effort.


What do you think is going on with the website amiga.com?

_________________
Sometimes we give people a lot of credit just because they’re writing nice sentences even if it isn’t adding up to much.

 Status: Offline
Profile     Report this post  
Minuous 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 13:36:39
#10 ]
Regular Member
Joined: 30-Oct-2004
Posts: 319
From: Unknown

The site is very sparse on details, but I get the impression that it's like ReActor except that it won't run on OS3.9 and costs $200. I'll pass on that.

 Status: Offline
Profile     Report this post  
kas1e 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 14:34:59
#11 ]
Elite Member
Joined: 11-Jan-2004
Posts: 3549
From: Russia

@Minuous

You forget to ask about aos1.0 and win3.1 support as well

@JamieKrueger 
Tested public freeware archives from your page, looks pretty cool !

Last edited by kas1e on 30-Oct-2010 at 02:36 PM.

_________________
Join us to improve dopus5!
zerohero's mirror of os4/os3 crosscompiler suites

 Status: Offline
Profile     Report this post  
elwood 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 15:03:44
#12 ]
Elite Member
Joined: 17-Sep-2003
Posts: 3428
From: Lyon, France

@kas1e

Quote:
You forget to ask about aos1.0 and win3.1 support as well

So true!

@Jamie
Do a RAD like Realbasic and I'll buy it for 400 Eur +

_________________
Philippe 'Elwood' Ferrucci
Sam460 1.10 Ghz
AmigaOS 4 betatester
Amiga Translator Organisation

 Status: Offline
Profile     Report this post  
Channel_Z 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 15:05:26
#13 ]
Regular Member
Joined: 4-Mar-2009
Posts: 305
From: Unknown

I might consider donating if you open-source the project and make it portable to other platforms.

Otherwise, I'd rather donate to projects that will benefit the entire Amiga community, and not just a small part of it. Like the AROS bounties.

Last edited by Channel_Z on 30-Oct-2010 at 03:32 PM.

 Status: Offline
Profile     Report this post  
samo79 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 17:52:49
#14 ]
Elite Member
Joined: 13-Feb-2003
Posts: 3505
From: Italy, Perugia

@Minuous

Yep, OS 3.x is too old and no more supported officially, for users it's time to upgrade

_________________
BACK FOR THE FUTURE

http://www.betatesting.it/backforthefuture

Sam440ep Flex 800 Mhz 1 GB Ram + AmigaOS 4.1 Update 6
AmigaOne XE G3 800 Mhz - 640 MB Ram - Radeon 9200 SE + AmigaOS 4.1 Update 6

 Status: Offline
Profile     Report this post  
Samurai_Crow 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 18:03:08
#15 ]
Elite Member
Joined: 18-Jan-2003
Posts: 2320
From: Minnesota, USA

@samo79

Quote:

samo79 wrote:
@Minuous

Yep, OS 3.x is too old and no more supported officially, for users it's time to upgrade


...to AROS 68k!

 Status: Offline
Profile     Report this post  
Nibunnoichi 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 19:36:39
#16 ]
Cult Member
Joined: 18-Nov-2004
Posts: 969
From: Roma + Lecco, Italia

@JamieKrueger

Great to see you back in business! AVD is one of the applications i was looking forward to buy as soon as it would become available!

_________________
Proud Amigan since 1987
Owner of various Commodore and a SAM440ep\OS4.1FE
See them on http://retro.furinkan.org/

 Status: Offline
Profile     Report this post  
Varthall 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 20:15:43
#17 ]
Super Member
Joined: 17-Feb-2004
Posts: 1559
From: Up Rough

@Channel_Z

A Reaction GUI builder would be useless on AROS and MorphOS.

Varthall

_________________
AmigaOne XE - AmigaOS 4.1 - Freescale 7457 1GHz - 1GB ram

 Status: Offline
Profile     Report this post  
Channel_Z 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 20:33:04
#18 ]
Regular Member
Joined: 4-Mar-2009
Posts: 305
From: Unknown

@Varthall

Exactly. That is why I only will support it if it is open sourced, so that other interested developers might add GUI builder support for MUI, ClassAct, BOOPSI etc.

 Status: Offline
Profile     Report this post  
Varthall 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 21:09:11
#19 ]
Super Member
Joined: 17-Feb-2004
Posts: 1559
From: Up Rough

@Channel_Z

It depends I guess, if the program has not been made to support other GUI toolkits, adding this might require a complete rewrite.

Varthall

_________________
AmigaOne XE - AmigaOS 4.1 - Freescale 7457 1GHz - 1GB ram

 Status: Offline
Profile     Report this post  
JamieKrueger 
Re: AVD (Advanced Visual Developer) sponsorship
Posted on 30-Oct-2010 21:54:29
#20 ]
Regular Member
Joined: 20-Jun-2004
Posts: 147
From: From the BITbyBIT lab: USA

@kas1e

The current version of the SDK Browser (1.6) is very usable as an
AmigaOS4 SDK document viewer/browsing utility. The 2.0 version
does add some nice features over 1.6, and should be out sometime
this weekend. I would grab the current copy from my website or
os4depot and get starting coding now. :)

Then check back and you can trade up to the 2.0 version.

The GUI Builder can produce interface designs as both "C" and
"GuiBits" versions now, but is still Alpha and needs a lot of work
yet to be truly useful. I will be putting together a new build of the
AVD Beta for the current customers/beta testers soon. (Which
should be the first in regular updates to the beta testers).

Best Regards,

Jamie Krueger

_________________
Jamie Krueger
BITbyBIT Software Group LLC
jamie@bitbybitsoftwaregroup.com
PLEASE NOTE: I only speak for myself and my company,
and am not a spokesperson for Amiga Inc.

 Status: Offline
Profile     Report this post  
Goto page ( 1 | 2 Next Page )

[ home ][ about us ][ privacy ] [ forums ][ classifieds ] [ links ][ news archive ] [ link to us ][ user account ]
Copyright (C) 2000 - 2019 Amigaworld.net.
Amigaworld.net was originally founded by David Doyle