Author Topic: T-Engine4 / ToME4 beta10 unleashed!  (Read 5992 times)

DarkGod

  • Rogueliker
  • ***
  • Posts: 137
  • Karma: +0/-0
    • View Profile
T-Engine4 / ToME4 beta10 unleashed!
« on: September 05, 2010, 03:10:53 PM »
As promised here comes T-Engine4 and ToME4 beta10 !
See http://tome.te4.org/ http://te4.org/ http://blog.te4.org/

Release highlights:

* Winnable game! The endgame fight is implemented with three possible outcomes.
* Smarter AI, most monsters can now pathfind using distance maps
* New class: Reavers
* Support for engine self update (disabled for now)
* Many speed improvments
* Finished alchemists spells
* Much balancing and fixes

Expanded changelist:

* ActorFOV can now compute distance maps if __do_distance_map=true is set for your actors; new AIs can use distance maps to do low-cost pathfinding (ai: simple_dmap, flee_dmap, dmap)
* Added achievements for most major plot events
* Added a –force32bits flags to premake to allow compilation using luajit on a 64bit linux
* Added an example_realtime module that is an exact copy of example module but in realtime (the gameplay sucks it’s not adapted)
* Added core.game.setRealtime(freq) function to set the engine into realtime mode, calling tick() at the given frequency
* Added jellies images
* Added lore items, as you explore the world you can discover texts, writings and other stories, they automatically add up in a lore book, accessible from the game menu
* Added Map:checkAllEntitiesNoStop() that will iterate over all entities no matter if a result is found
* Added minor and major demons, beware some are nasty
* Added new target types (for project): ballbolt, conebolt, ballbeam, conebeam
* Added one new world artifact
* Added potions of free action, they are not cheap but they are useful :)
* Added snakes tiles
* Added trails to some spells
* Allow talent category points to be used on known categories, increasing their mastery by 0.1
* Allow the Static generator defineTile() function to automatically define spots
* Changed engine version to 0.9.10 (from 1.0.0), your module will not display anymore in the list until you change your init.lua accordingly
* Changed lua table.sort() function to accept any index as a second parameter, if not a function it will assume the items to sort are tables and sort them by the given index
* Chat class constructor can be passed a table as a third parameter to provide data to the chat script
* Chat requests auto stop resting & running
* Chats & Stores can only be triggered by a player
* Chat texts revised by ushumgal
* Corrected some alchemist talent descriptions
* DebugConsole update
* Decaying wont destroy artifacts
* Dialogs now open with a fast “pop” animation (disable-able if needed by modules)
* Do not show the golem HP if the golem is dead
* Each achievement now have three versions, one for each difficulty level
* Effective talent level (computed using mastery value) will be displayed in talent description
* Factorized module instanciation/savefile loading into Module:instanciate()
* Fire Alchemy third talent is now “Fire Storm”, which finaly makes the tree complete
* Fix character sheet for controlled summmons
* Fix description of Stone Wall spell
* Fixed Bathe in Light
* Fixed Earth’s Eyes
* Fixed picking up all items with ‘*’
* Fixed some zones that were mistakenly non-persistant: Angolwen, Vor/Gorbat/Grushnak/Rak’Shor Prides
* Fixed typos
* Fix fire bolt for the Imp summon
* Fix (maybe ..) Quake talent
* Fix Nature’s Touch and Earth’s Eyes
* Fix online profile dialog size
* Fix profiles data “leaking” into globals (this fixed the Blood of Life)
* Fix saving while controlling a creature
* Fix tooltip on grids hit by the Darkness spell
* Game engines can also come in archived form in a .teae zip file
* Greatly improved performance when moving around the map. Map:checkAllEntities() is now much faster, FOV code is also faster
* Harno, the Herald of Minath Tirith will initiate a dialog if it is already speaking
* Improved character sheet (displays some more resistances and betetr char dump)
* Improved the integrated lua profiler (only works when luajit is disabled)
* Improve handling of activable items
* Improve savefile save performance
* Invulnerability prevents drowning
* It is possible to drop objets on the world map to destroy them
* Jewelers can now craft special rings on demand
* Main screen load savefile menu will correctly work for all modules with the keyboard
* Most ToME NPCs now use distance map to pursue the player
* New class: Reavers (Corrupter)
* New :cloneFull() method on all objects, this makes a perfect clone of the given object and any subjects recursively without creting duplicates of subobjects. This is nearly instantaneous and thus could be used to create time travel spells and other neat things.
* New engine.NameGenerator class
* New quest: Lost Knowledge
* New random quests: Escorts, you will find them randomly in some zones
* New random quest: sometimes you will meet a lost adventurer (of a random class), you can help him by escorting him to a portal, but beware he dies easily. He might reward you for you kindness.
* New zone: Ithilthum, Valley of the Moon
* New zone: the High Peak where the final end game battle will take place!
* New zone: the Slime Tunnels
* NPCs will “transfer” their targets to their friends in sight if they do not have a target themselves
* Password will not be displayed onscreen anymore
* Phase Door & Teleport are now correctly restricted to their own ranges
* Piercing arrow whot hit twice the same target
* Probability Travel does not work over no-teleport zones and in the wilderness
* Progressive teleporation resistance affects NPCs being teleported against their will
* Projectiles can now leave a trail of particles
* Resistances in ToME now go from -100 to 100 instead of 0 to 100
* Right click on a hotkey will delete it
* Summoned creatures give flying texts when doing damage
* Talents can be auto cast by melee weapon hit
* Talents can now require talents to not be known
* TE4 can now handle multiple versions of the same engine (or even different ones). Engines are located in game/engines and the default one in game/engines/default
* TE4 main menu will display a “news of the day”
* Teleport: Angolwen will take you back to the correct worldmap
* T-Engine can now auto-update itself (as long as it is not an update to the exe) (this is disabled for now, will be activated later)
* The game is now winnable with 3 possible endings
* The Shade of Angmar is immune to blindness
* Tridents & Whips now use the exotic weapons mastery talent, which is hidden by default, will require a quest to unlock
* Saves can now be made in the background while continuing to play the game. This obviously speeds ups considerably the gameplay since saves now “feel” instant.
* *WARNING* Module makers: I had to change how savefiles work, there is a few changes needed in your modules for it to work.
o * In Game.lua: change the Savefile code in saveGame() to be just a call to savefile_pipe:push(game.save_name, “game”, game)
o * In dialogs.Death too
o * Take a look at either the example module or ToME to see how it works exactly, it’s really easy to convert
o * the Game:tick() method must check for savefile_pipe.saving and return true if it’s true (otherwise the save will not continue in the background). Check the example module tick()
o * In your PlayerDisplay you can add a line like that:

if savefile_pipe.saving then h = h + self.font_h self.surface:drawColorStringBlended(self.font, “#YELLOW#Saving…”, 0, h, 255, 255, 255) h = h + self.font_h end

To make a graphical display of the background saving thread.
* Quitting while a save is going one will obviously still wait until it is finished

Have fun!

getter77

  • Protector of the Temple
  • Global Moderator
  • Rogueliker
  • *****
  • Posts: 4957
  • Karma: +4/-1
    • View Profile
Re: T-Engine4 / ToME4 beta10 unleashed!
« Reply #1 on: September 05, 2010, 09:39:32 PM »
Yet more excellent work.   8)
Brian Emre Jeffears
Aspiring Designer/Programmer/Composer
In Training

jocke the beast

  • Rogueliker
  • ***
  • Posts: 103
  • Karma: +0/-0
    • View Profile
Re: T-Engine4 / ToME4 beta10 unleashed!
« Reply #2 on: September 05, 2010, 09:44:42 PM »
Nice work.
And now I must expose myself a bit:
Is the engine, T-engine 4, done and stable to use for modders?
Is it your game (TOME4) that is Beta 10?
Sorry for perhaps a stupid question

DarkGod

  • Rogueliker
  • ***
  • Posts: 137
  • Karma: +0/-0
    • View Profile
Re: T-Engine4 / ToME4 beta10 unleashed!
« Reply #3 on: September 05, 2010, 09:52:55 PM »
Not stupid at all :)

ToME is indeed beta, although it's quickly approching non beta status :)

The engine itself is quite stable, I change very little every release and people have alraedy began working on new games using it :)
Come take a walk on the forums at http://forum.t-o-m-e.net/

jocke the beast

  • Rogueliker
  • ***
  • Posts: 103
  • Karma: +0/-0
    • View Profile
Re: T-Engine4 / ToME4 beta10 unleashed!
« Reply #4 on: September 06, 2010, 06:22:22 AM »
Well thanks for the information!

Playing around with TOME and I have to say it's impressive.
Nice work sir!