EvilZone
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Home
Help
Search
Login
Register
EvilZone
»
Programming and Scripting
»
Scripting Languages
(Moderator:
RedBullAddicted
) »
Lua
Print
Pages: [
1
]
Author
Topic: Lua (Read 1967 times)
0 Members and 1 Guest are viewing this topic.
Flikka
Banned leecher
Peasant
Posts: 56
Cookies: -65527
Life isn't fair. We all learn it the hard way.
Lua
«
on:
July 28, 2011, 05:32:58 am »
Lua is a powerful, fast, lightweight, embeddable scripting language.
Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.
Lua has been used in many industrial applications, with an emphasis on embedded systems (e.g., the
Ginga
middleware for digital TV in Brazil) and games (e.g.,
World of Warcraft
). Lua is currently. Lua has a solid
reference manual
and
there are
several books about it
. Several
versions
of Lua have been released and used in real applications since its creation in 1993. Lua featured in
HOPL III, the Third
ACM SIGPLAN History of Programming Languages Conference
, in June 2007.
Lua has a deserved reputation for performance. To claim to be "as fast as Lua" is an aspiration of other scripting languages. Several benchmarks show Lua as the fastest language in the realm of interpreted scripting languages. Lua is fast not only in fine-tuned benchmark programs, but in real life too. A substantial fraction of large applications have been written in Lua.
Lua is
distributed
in a small package and builds out-of-the-box in all platforms that have an ANSI/ISO C compiler. Lua runs on all flavors of Unix and Windows, and also on mobile devices (such as handheld computers and cell phones that use BREW, Symbian, Pocket PC, etc.) and embedded microprocessors (such as ARM and Rabbit) for applications like Lego MindStorms.
For specific reasons why Lua is a good choice also for constrained devices, read
this summary
by Mike Pall.
Lua is a fast language engine with small footprint that you can embed easily into your application. Lua has a simple and well documented API that allows strong integration with code written in other languages. It is easy to extend Lua with libraries written in other languages. It is also easy to extend programs written in other languages with Lua. Lua has been used to extend programs written not only in C and C++, but also in Java, C#, Smalltalk, Fortran, Ada, Erlang, and even in other scripting languages, such as Perl and Ruby.
A fundamental concept in the design of Lua is to provide
meta-mechanisms
for implementing features, instead of providing a host of features directly in the language. For example, although Lua is not a pure object-oriented language, it does provide meta-mechanisms for implementing classes and inheritance. Lua's meta-mechanisms bring an economy of concepts and keep the language small, while allowing the semantics to be extended in unconventional ways.
Adding Lua to an application does not bloat it. The
tarball for Lua 5.1.4
, which contains source code, documentation, and examples, takes 212K compressed and 860K uncompressed. The source contains around 17000 lines of C. Under Linux, the Lua interpreter built with all standard Lua libraries takes 153K and the Lua library takes 203K.
Lua is free open-source software, distributed under a
very liberal license
(the well-known MIT license). It may be used for any purpose, including commercial purposes, at absolutely no cost. Just
download
it and use it.
Lua is designed, implemented, and maintained by a
team
at
PUC-Rio
, the Pontifical Catholic University of Rio de Janeiro in Brazil. Lua was born and raised in
Tecgraf
, the Computer Graphics Technology Group of PUC-Rio, and is now housed at
Lablua
. Both Tecgraf and Lablua are laboratories of the
Department of Computer Science
of PUC-Rio
Download:
http://www.lua.org/download.html
Lua For beginners:
http://lua.gts-stolberg.de/en/index.php?uml=1
«
Last Edit: July 28, 2011, 05:36:23 am by Flikka
»
Report to moderator
Logged
My name is:
01000110 01101100 01101001 01101011 01101011 01100001
Kulverstukas
Administrator
Zeus
Posts: 6627
Cookies: 542
Fascist dictator
Re: Lua
«
Reply #1 on:
July 28, 2011, 06:30:40 am »
Don't use the big font, please... and next time post the source maybe?
http://www.lua.org/about.html
Report to moderator
Logged
My blog:
http://9v.lt/blog
xor
Guest
Re: Lua
«
Reply #2 on:
July 28, 2011, 01:27:49 pm »
My friend wrote a browser for linux using LUA. After 5 days it was in all the major repo's.
http://luakit.org/projects/luakit/
Report to moderator
Logged
Stackprotector
Administrator
Titan
Posts: 2515
Cookies: 205
Re: Lua
«
Reply #3 on:
July 29, 2011, 12:18:41 pm »
I have wrote several minigames-instances-raids-bosses for world of warcraft private server (projectsilvermoon\funDB) in lua.
It does the job pretty good
Report to moderator
Logged
~Factionwars
Print
Pages: [
1
]
EvilZone
»
Programming and Scripting
»
Scripting Languages
(Moderator:
RedBullAddicted
) »
Lua