Integration of Computers    
   
Table of contents
(Prev) Gallium arsenideGambit (Scheme implementation) (Next)

Gambas

Gambas
Gambas Logo
Gambas 3 Logo
Gambas 2 Logo
Gambas 3.3.4 running on Fedora 16 with Xfce
Gambas 3.3.4 running on Fedora 16 with Xfce
Appeared in1999
Designed byBenoît Minisini
Stable release3.3.2 (September 30, 2012; 5 months ago (2012-09-30)[1])
Influenced byVisual Basic, Java[2]
OSLinux, FreeBSD; version for
Mac OS X in progress
LicenseGPLv2+

Gambas is the name of an object-oriented dialect of the BASIC programming language as well as the integrated development environment that accompanies it. Designed to run on Linux and other Unix-like computer operating systems,[3] its name is a recursive acronym for Gambas Almost Means Basic. Gambas is also the word for prawns in the Spanish language, from which the project's logos are derived.

Gambas is included in a number of Linux distributions' repositories, such as Debian's, Fedora's, Mandriva Linux's and Ubuntu's. There is a Windows version of Gambas which can run under the Cygwin environment, although this version is significantly less tested than its Linux counterparts and is command line only; coLinux and derivatives have also been used. Gambas from version 3.2 can run on Raspberry Pi but offers no JIT there.

Contents

History

Gambas 1.0.15 running from KDE

Gambas was developed by the French programmer Benoît Minisini with its first release coming in 1999. Benoît had grown up with the BASIC language, and decided to make a free software development environment that could quickly and easily make programs with user interfaces.[2]

The Gambas 1.x versions featured an interface made up of several different separate windows for forms and IDE dialogues in a similar fashion to the interface of the GIMP. It could also only develop applications using Qt and was more oriented towards the development of applications for KDE.[4] The last release of the 1.x versions was Gambas 1.0.19.

Gambas 2.7 with Russian interface

The first of the 2.x versions was released on January 2, 2008 after three to four years of development. It featured a major redesign of the interface, now with all forms and functions embedded in a single window, as well as some changes to the Gambas syntax, although for the most part code compatibility was kept. It featured major updates to existing Gambas components as well as the addition of some news ones, such as new components that could use GTK+ or SDL for drawing or utilize OpenGL acceleration. Gambas 2.x versions can load up and run Gambas 1.x projects, with occasional incompatibilities.

The next major iteration of Gambas, the 3.x versions, was released on December 31, 2011.[5] Early benchmarks of the Gambas 3 development versions showed its Gambas scripting being significantly faster than Perl and Python equivalents.[6] An independent contributor, François Gallo, has also ported Gambas 3.x to Mac OS X and says he will release packages for it.[7]

Features

Gambas 2.7.0 running on Fedora Linux with Blackbox

Gambas is designed to build graphical applications programs using the Qt or the GTK+ toolkit; the Gambas IDE is written in Gambas itself.[8] Gambas includes a GUI designer to aid in creating user interfaces, but can also make command line applications.[9] The Gambas runtime environment is needed to run executables.

Functionality is provided by a variety of components, each of which can be selected to provide additional features.[10] Drawing can be provided either through Qt and GTK+ toolkits, with an additional component which is designed to switch between them.[11] Drawing can also be provided through the Simple DirectMedia Layer, which can also be utilized for audio playback through a separate sound component. GPU acceleration support is available through an OpenGL component, as well as other hardware functionally provided by various other components.[11] There are also components for handling other specialized tasks.[10]

With Gambas, developers can also use databases such as MySQL or PostgreSQL, build KDE (Qt) and GNOME GTK+ applications with DCOP, translate Visual Basic programs to Gambas and run them under Linux, build network solutions, and create CGI web applications.

Gambas since version 3.2 IDE has integrated profiler and it started to use Just-in-time compilation technology.

Differences from Visual Basic

Gambas is intended to provide a similar experience as developing in Microsoft Visual Basic, but it is not a free software clone of the popular proprietary program. The author of Gambas makes it clear that there are similarities to Visual Basic, such as syntax for BASIC programs and the integrated development environment; Gambas was written from the start to be a development environment of its own and seeks to improve on the formula.[12][13][14]

Its object model and each class being represented in a file, the archiver to package the program is inspired by the Java programming language. Gambas is intended to be an alternative for former Visual Basic developers who have decided to migrate to Linux. There are also other important distinctions between the Gambas and Visual Basic. One notable example is that in Gambas array indexes always start with 0, whereas Visual Basic indexes can start with 0 or 1.[15]

Adoption

DONKEY.GB
One of the examples running inside Gambas 3 IDE
Game: Stars War made in Gambas3

Several programs and many forms of example code have been written using and for Gambas. As of 28 October 2012 (2012-10-28)[update], Freshmeat listed 23 applications that were developed using Gambas,[16] while the Gambas wiki listed 70;[17] several other specialized sites list Gambas applications and code.[18][19][20][21] Several community sites, including community forums and mailing lists, also exist for Gambas.[22] White Island Software offers project hosting, program listing, forums and more for Gambas users.[23]

Example code

Hello world program with GUI.

Public Sub Form_Open()   Message("Hello World!") End

Program that computes a 100-term polynomial 500000 times, and repeats it ten times (used for benchmarking).

Private Sub Test(X As Float) As Float   Dim Mu As Float = 10.0  Dim Pu, Su As Float  Dim I, J, N As Integer  Dim aPoly As New Float[100]   N = 500000   For I = 0 To N - 1 For J = 0 To 99  Mu =  (Mu + 2.0) / 2.0  aPoly[J] = Mu Next Su = 0.0 For J = 0 To 99  Su = X * Su + aPoly[J] Next Pu += Su  Next   Return Pu End Public Sub Main()   Dim I as Integer For I = 1 To 10 Print Test(0.2)   Next End

See also

References

  1. ^ "GAMBAS 3 Documentation". http://gambasdoc.org/help/comp?v3. Retrieved 2012-01-01.
  2. ^ a b "Gambas Documentation Introduction". Gambas Website. http://gambasdoc.org/help/doc/intro?e n&view. Retrieved 2011-05-07.
  3. ^ Upfold, Peter (2008-09-08). "Gambas — Almost Visual Basic for Linux". FOSSwire. http://fosswire.com/post/2008/09/gamb as-almost-visual-basic-for-linux/. Retrieved 2011-05-07.
  4. ^ "Gambas: A Fast Visual Basic for Linux". CodeFez. http://codefez.com/gambas-a-fast-visu al-basic-for-linux/. Retrieved 2007-04-04.
  5. ^ "Gambas 3.0 for BASIC with bug and security fixes". The H. http://www.h-online.com/open/news/ite m/Gambas-3-0-for-BASIC-with-bug-and-s ecurity-fixes-1403082.html. Retrieved 2012-01-05.
  6. ^ "Benchmarking". Gambas Website. http://gambasdoc.org/help/doc/benchma rk. Retrieved 2011-05-07.
  7. ^ "A step forward in Gambas!". François Gallo. http://old.nabble.com/A-step-forward- in-Gambas!-td31859718.html. Retrieved 2011-07-18.
  8. ^ "Gambas". Penguin Sightings. 2008-10-24. http://www.penguinsightings.org/devel opment/languages/gambas. Retrieved 2012-02-18.
  9. ^ An Alphabet of Computer Languages: BASIC, PCLinuxOS Magazine
  10. ^ a b Fernandez, Daniel (2004-11-11). "Regarding Gambas". OSNews. http://www.osnews.com/story/8849/Rega rding_Gambas/page1. Retrieved 2011-05-07.
  11. ^ a b "Gambas RAD". Linux.co.uk. http://old.linux.co.uk//docs/center/f eatured-software/gambas-rad. Retrieved 2011-05-07.
  12. ^ Mark Alexander Bain (2008-08-28). "Gambas -- Almost Visual Basic on Linux". Suite101.
  13. ^ Frank Wieduwilt (2008-10). "Programming with the Gambas Basic IDE". Linux Pro Magazine. http://www.linuxpromagazine.com/Issue s/2008/95/Gambas-Basic-IDE/. Retrieved 2011-12-10.
  14. ^ AWC Electronics. "Physical Computing with Linux: A Rapid Approach using Gambas". http://www.awce.com/gp3-gambas.html. Retrieved 2012-02-18.
  15. ^ "Differences from Visual Basic". Gambas Website. http://gambasdoc.org/help/doc/diffvb. Retrieved 2011-05-07.
  16. ^ "23 projects tagged "Gambas"". Freshmeat. http://freshmeat.net/tags/gambas. Retrieved 2012-10-28.
  17. ^ "Application Repository". Gambas. http://gambasdoc.org/help/app?en& view. Retrieved 2011-07-16.
  18. ^ "GAMBAS BASIC Web site". GAMBAS BASIC. http://gambaslinux.eg2.fr/index.php?l ng=en. Retrieved 2011-05-07.
  19. ^ "Gambas Category". Rosseta Code. http://rosettacode.org/wiki/Category: Gambas. Retrieved 2011-11-18.
  20. ^ "Gambas Examples". Piga Software. http://piga.tropicalwikis.com/wiki/Ga mbas_Examples. Retrieved 2011-05-07.
  21. ^ "Gambas Programs". Piga Software. http://piga.tropicalwikis.com/wiki/Ca tegory:Gambas_Programs. Retrieved 2011-05-07.2010
  22. ^ "Mailing Lists & Forums". Gambas Web site. http://gambasdoc.org/help/doc/forum?e n&view. Retrieved 2011-05-07.
  23. ^ About — White Island Software

Further reading

External links

(Prev) Gallium arsenideGambit (Scheme implementation) (Next)