Blackvoxel Forum

Blackvoxel => Announcements => Topic started by: Enigma on October 23, 2013, 01:37:20 am

Title: Blackvoxel 1.22 Beta is out.
Post by: Enigma on October 23, 2013, 01:37:20 am
Hello,

A new version of Blackvoxel is available!

Important Warning : It's a beta version. Save your universes before testing.

List of main changes : Version 1.22 Beta 1

The Blackvoxel Team
Title: Re: Blackvoxel 1.22 Beta is out.
Post by: Qon on October 23, 2013, 08:39:12 am
Hi Enigma! :>
  • Added : New Egmy (Not yet activated).
  • Fixed : Programmable Robot : Redone some init/load/save code.
  • Fixed : Programming : Access to libraries (iolib...) wasn't working.
Error: Egmy not defined. Egmy was not found in diqtionary or acronym list.
What is an Egmy? :Q

What was fixed with init/load/save qode and in what way was access to libraries fixed for programming? There are no funqtions that deal with iolib that were exposed before or now. I'm qonfused.
Title: Re: Blackvoxel 1.22 Beta is out.
Post by: olive on October 24, 2013, 01:59:07 am

Hi Enigma! :>
  • Added : New Egmy (Not yet activated).
  • Fixed : Programmable Robot : Redone some init/load/save code.
  • Fixed : Programming : Access to libraries (iolib...) wasn't working.
Error: Egmy not defined. Egmy was not found in diqtionary or acronym list.
What is an Egmy? :Q

What was fixed with init/load/save qode and in what way was access to libraries fixed for programming? There are no funqtions that deal with iolib that were exposed before or now. I'm qonfused.

Yep, Egmy isn't in dictionnary :o So they should add it  :P

The Squirrel iolib is a set of squirrel optional functionalities required to access files in programs.

This is part of what the Squirrel author named "Squirrel Standard Library".

So, to explain clearly what it's mean, in 1.22 you can write such kind of code for saving data into files.

Code: [Select]
local fh = file("test.txt","wb+");
fh.writen('N', 'b');
fh.close();


The Blackvoxel Team
Title: Re: Blackvoxel 1.22 Beta is out.
Post by: Qon on October 24, 2013, 03:18:23 am
Oh thank you!
I didn't notice the standard lib manual until now. I was searching through the language specification before q:
And math functions also!