Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Enigma

Pages: 1 ... 3 4 [5]
61
Announcements / Blackvoxel 1.22 Beta 6 is out.
« on: November 03, 2013, 10:40:47 pm »
Some little improvements on this release :
  • Improved : GetGameTime().
  • Added : The F10 "Fear key" for testing some new features. Save your world before using it.
  • Improved : Redesigned the Blackvoxel Font (still unfinished).

62
Announcements / Blackvoxel 1.22 Beta 5 is out.
« on: October 31, 2013, 10:46:08 pm »
Here are the changes :

  • Added : GetInfo(23) Give the context of execution where function are called.
  • Fixed : GetInfo(22) Now return the right script number when Voxel_Unload() is issued at program change.
  • Fixed : PickVoxel3D() should work correctly now.
  • Added : GetInfo(24) Give the number of slot of the robot inventory.
  • Added : Started an internal squirrel test program for better detecting some regressions and little bugs.

Values for GetInfo(23) :

0: Creation. The robot has been created. State can be found with : Voxel_Load().
1: Destruction. Robot is about to be destroyed. State can be found with : Voxel_Unload().
2: Normal Step. The robot is doing normal step operation. State can be found with : Voxel_Step().
3: Serialization. The robot is in loading/saving operation. State can be found with : Voxel_Load() (Means Loading) and Voxel_Unload() (Means saving).
4: Program Change. The program is changed in the interface.  Voxel_Load() and Voxel_Unload()

63
Announcements / Blackvoxel 1.22 Beta 4 is out.
« on: October 28, 2013, 07:30:28 pm »
This release is intended for correcting some bugs :

  • Fixed : GetPath() and GetInfoName() functions can be used now in Voxel_Load() and Voxel_Unload() as these functions where intended to.
  • Fixed : GetInfo() with indexes 20...22 can be used in Voxel_Load() and Voxel_Unload()
  • Fixed : PickVoxel3D(0,0,0) doesn't crash anymore.

64
Announcements / Blackvoxel 1.22 Beta 3 is out.
« on: October 28, 2013, 01:39:35 am »
Here are the changes and additions :
  • Fixed : User-Texture Engine can now be broken with the base constructor/destructor tool.
  • Added : Large address aware activated for windows 32 bits. Not sure it will be activated on the final 1.22  because it seems capable of creating problems and compatibility issues.
  • Added : New UserData directory for user program data. Data saved by your scripts should go in it.
  • Added : New Functions for programming.

New Functions Added :

int GetRobotLevel()

Not really for immediate use. Returns the robot level. This function is intended for the future addition of other robots in the case we restrict some functionality depending on the robot.

int GetRobotID()

Return the unique serial number of your robot. Can be used for generating an unique file name for saving datas.

var GetPath(int PathType)

Return the paths of the working directories of Blackvoxel. Should be used instead of absolute path because the directories can be located in different locations depending on operating system and/or version. For maximum compatibility, don't forget to use GetInfo(20) for the path separator character to use.

For PathType :

0 : (int) Maximum value for PathType
1 : (string) Blackvoxel main data directory.
2 : (string) Actual Universe save.
3 : (string) Squirrel script location.
4 : (string) The Location for saving the data of your scripts.

var GetInfo(int InfoNum)

Added new informations with offset 16-22:

0: sq_pushinteger(v,22); break;
1: Player Location (x)
2: Player Location (y)
3: Player Location (z)
4: Player Location (x) in Voxel Units
5: Player Location (y) in Voxel Units
6: Player Location (z) in Voxel Units
7: Player Viewing direction (yaw)
8: Player Viewing direction (pitch)
9: Player Viewing direction (roll)
11: Player Head Location (x)
12: Player Head Location (y)
13: Player Head Location (z)
14: Player Head Location (x) in Voxel Units
15: Player Head Location (y) in Voxel Units
16: Player Head Location (z) in Voxel Units
17: Player Velocity (x)
18: Player Velocity (y)
19: Player Velocity (z)
20: File path separator character
21: Program Version
22: Actual Script Number

var GetInfoName(int InfoNum)

Added the description for GetInfo() new items.

bool PlayerMove(float x, float y, float z)

This function moves the player. Coordinates are relative. Useful to move the player along with some voxels. Move is limited to +-5000 per call.

bool PlayerAddAccel(float x, float y, float z)

Add provided values to player acceleration.

bool PlayerSetAccel(float x, float y, float z)

Replace the actual player acceleration values by the provided values.









65
Announcements / Blackvoxel 1.22 Beta 2 is out.
« on: October 25, 2013, 03:32:44 am »
Yes, a new update again :P
  • Fixed : Sometimes crash when removing the computer or changing program when a Squirrel program is hanging.
  • Added : Modded Squirrel core for supporting program force stop.
  • Fixed : Programming : GetInfonum() and GetInfoName() returned nothing with offset out of range.
  • Fixed : Manual : Symbol section are now displayed in the manual summary.
  • Fixed : Programming : Look3D Function do not crash anymore when looking at an inaccessible location.
  • Fixed : Programming : PushVoxelTo() function. Voxel in a slot didn't disapeared when quantity reached 0.


66
Announcements / Blackvoxel 1.22 Beta is out.
« 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
  • Added : A new application log system.
  • Added : The RTFM voxel.
  • Fixed : Little memory loss.
  • Added : New Egmy (Not yet activated).
  • Fixed : Aspect ratio problem with Eyefinity/Multiscreen and non standard screens.
  • Added manual setting Opt_SectCFactor in the Settings_Hardware.dat to
    change one of the sector rendering optimisation agressiveness.
  • Changed : Removed voxel_input interface flag from XR robots to prevent extraction robots to see containers in other extraction robots.
  • Added : voxel_output interface to XR robots so content can be emptied by some means. XR robots can be emptied using other voxel mechanism. When they are empty, they restore to their original state and can be collected again.
  • Fixed : Programmable Robot : Redone some init/load/save code.
  • Fixed : Programmable robot : Added stdout flush after print command.
  • Fixed : Programmable robot voxel_input and voxel_output wasn't worked as intended.
  • Fixed : XR Extraction Robots hanged when no storage was found. Now search for new storage.
  • Fixed : programming : Voxel_Load and Voxel_Unload was buggy.
  • Fixed : Programming : Access to libraries (iolib...) wasn't working.
  • Added : Programming : bool PlaceVoxel3D(int x,int y, int z, int VoxelType) function.
  • Added : Programming : bool PickVoxel3D(int x, int y, int z) function.
  • Added : Programming : int Look3D(int x, int y, int z) function.
  • Added : Programming : bool MoveVoxel3D(int sx, int sy, int sz, int dx, int dy, int dz) function.
  • Added : Programming : var GetInfo(int InfoNum) function (Infonum=0..16).
  • Added : Programming : var GetInfoName(int InfoNum) function (Infonum=0..16).
  • Fixed : Programming : GetX(),GetY(), GetZ() get the right voxel location after Move() is called.
  • Fixed : Programming : PlaceVoxel() function. Voxel in a slot didn't disappeared when quantity reached 0.
  • Fixed : Programming : GetGameTime() function returned a negative number. Now return the number of millisecond since the start of the game.
  • Fixed : Added support for new BMP variant format used by recent version of gimp.
  • Fixed : Silicon Wafer manufacturing list now include the needed blackrock blue.
  • Fixed : Minor problem in the player save file.

The Blackvoxel Team

67
Suggestions / Important : Must be read before posting in this forum.
« on: October 05, 2013, 07:48:32 pm »
  • No remuneration and no counterparts will be given in exchange for ideas and suggestions. By posting your ideas on this forum, you agree to grant us all the rights to use them for free. The purpose of this section is only for helping us to know the desires of our users in order to improve our game. Otherwise, do not submit your ideas.
  • Developers must make choice about game content and development priority based on their own thought. Don't forget that different players may expect different things. That's not an easy job.  So don't be angry if we don't implement your suggestion or if we choose to implement it latter or differently. In fact, we already have a big list of ideas of our own waiting for time and means for implementation, so it's likely that many suggestions are already in our plan. Anyway, it's always a good thing to expose your feeling about the game in order to help us to make the good choices and to choose the better priority on the roadmap.
  • Developer time are dependant on game success. So a good way to help development is to speak about Blackvoxel to your friends.

Pages: 1 ... 3 4 [5]