MegaGlest Forum
Archives (read only) => Vanilla Glest => Announcements => Topic started by: martiño on 8 February 2009, 19:05:51
-
Hello,
We have released Glest 3.2.0 today. This version aims to make Glest more accessible, by adding tutorials, scenarios and simplified menu interface. It also adds the new 'Dark Forest' environment, which uses more detailed models taking advantage of more recent video hardware.
Complete list of new features:
- LUA scriting
- New tileset: Dark Forest
- Tutorials
- Improved text rendering
- Added sound effect for chat messages
- Changed loading screen
- Removed IP from new game screen
- Removed Api Info screen
Download:
Windows Version: http://glest.org/en/downloads.php
Linux: Source code and data available at the SVN: https://glest.svn.sourceforge.net/svnroot/glest
-
THANKS !!!!!
Finally official lua support!
For Linux see here (https://forum.megaglest.org/index.php?topic=4127.0)
( Source package is there (https://forum.megaglest.org/index.php?topic=4127.0) too )
-
Well, the code is ok, but the data package....
The scenario "Duel" is only black in the game ( no units??)
The scenario "One Hope" crashes the game ( I think its the wrong map! )
(update)Same for "Siege of Dispair".,"Tech and Magic" and so on
They all use the map "valley_of_death" now, which is only a two player map......
-
I'm sorry about that, this is now fixed in both the SVN and the windows version.
-
Will you upload a fixed data package for the linux users too?
( if you want you can of course upload my linux binaries and the sourcepackage I made too ;))
-
Well, I saw you've uploaded your own data, so I wanted to avoid confusion having 2 data packages. Maybe you could pack the binaries and the data in a single linux pack and I will upload it to sourceforge.
Regards.
-
No, I didn't made a data package yet, I linked to yours at sourceforge.
What I made is a source package and a linux binary package (without data).
But there are linux 64 and maybe apple users too, who would be happy to have the separated data package.
All completly similar to the glest 3.1.2 release.
I will contact the guys at liflg.org too to get a real linux installer( including the data ) and some promotion too.
-
Whopeee!! ;D ;D ;D ;D
-
Ok. I will make a separate data package.
-
I've uploaded both the Data (http://downloads.sourceforge.net/glest/glest_data_3.2.0.zip?use_mirror=) and the Code (http://downloads.sourceforge.net/glest/glest_source_3.2.0.zip?use_mirror=) to sourceforge.
-
Whoa, whoa, whoa... Whats the difference from the beta-3?
-
Yeah, what's the difference? And what is planned for the future? Any roadmap available?
And the most important question: Is it true that Glest development is dead now and only GAE will be developed and finally be the new official Glest? There was an announcement (that was more or less ignored), but now it's gone.
So any general information about the future of Glest/GAE?
-
You are right; the Glest Team is no longer working on Glest. So this means that the roadmap is whatever mods happen to be completed before Glest is outdated. :'( :'( :'(
-
And why is this kept so secretive? There was a small anouncment, but a day later it was gone. Nobody wondered or cared about this sudden death.
So GAE will be really the "new" Glest? Will it be based on 3.2.0 or on 3.1.2 (latest GAE is based on this)?
On the FreeGamer blog there were also some people really confused about this whole situation. I think there should at least be an official announcment stating about the future of Glest and GAE (--> What will be developed? What is dead, what is alive? Why all this?).
-
I haven't been told anymore than anyone else. It's not a bad thing that there is another release and it will be Martiño's choice whether he continues developing Glest or not. GAE (based from Glest 3.1.2) will continue to be developed as it was before.
-
I don't think we will develop glest in the way we used to do before, this is, adding new big features, however the project is far from dead, we will keep on updating if with bugfixes and improvements when it makes sense, and we will provide full support to the GAE team.
As for the GAE team I think their first priority should be to integrate 3.2.0 and make it more stable.
-
OK, thanks for clearing this up.
So basically it will be this: GAE is the new "main game" (soon based on 3.2.0) and the original Glest developers will support the GAE team. Did I got this right?
-
I think if GAE is able to create a stable release including all(or most) features of the current gest, GAE will be the official successor.
( @martino: I have one little feqature request for the lua system , if its easily possible. Can you give us a command to position new units with coordinates x,y on the map ? This would be really cool to create scenarios )
-
Yeah, thats what I've been nagging about for months. It would be very simple, but I'm still missing one of the header files to compile glest (gl something, sorry I'm at school) And even if I did add it myself, it would not be official. Fifteen minute work martino? (not including compile and upload time)
-
I think if GAE is able to create a stable release including all(or most) features of the current gest, GAE will be the official successor.
( @martino: I have one little feqature request for the lua system , if its easily possible. Can you give us a command to position new units with coordinates x,y on the map ? This would be really cool to create scenarios )
That should already be possible, the createUnit('unit_name', 0, startLocation(0)), function takes the position as third parameter, however i never directly put the position in my scripts, but i don't see any reason why positions would not work, however I don't know how to specify this in LUA, i think it has to be an array.
-
That should already be possible, the createUnit('unit_name', 0, startLocation(0)), function takes the position as third parameter...
yes , you can give startLocation(0), but you cannot do something like this:
myLocation=createLocationAt(x,y)
createUnit('unit_name', 0, myLocation)
-
Titi has a point. It would be nice to say
createUnit('unit_name', 0, pos.x, pos.y)
ie:createUnit('daemon', 0, 61, 143)
And this could simply make a unit (the daemon) for faction 0 at 61,143. Glest clearly can recognize locations like this, as I can see from the way the AI log recognizes the locations of where it attacks, sends scouts, etc;
I tried a few ideas, but no success...