Author Topic: Blackvoxel 1.22 Beta 7 is out  (Read 6366 times)

Enigma

  • Administrator
  • Jr. Member
  • *****
  • Posts: 68
    • View Profile
Blackvoxel 1.22 Beta 7 is out
« on: November 10, 2013, 12:07:24 am »
Changes :

Programming missed some input/output user interfaces for user interaction. So we added two simple ways to communicate with the user : Switches and Indicator Lights. Indicator Lights can even be used to make some display walls of voxels.

  • Finished Blackvoxel Font redesign.
  • Added : new interfaces GetInfos and SetInfos for communication with voxels.
  • Added : Input Switch voxel for using with robot.
  • Added : Indicator light voxel for using with robot.
  • Added : new programming function var Voxel_GetInfo(int x, int y, int z, int index)
  • Added : new programming function bool Voxel_SetInfo(int x, int y, int z, int index, var info);
  • Added : new programming function var Voxel_GetInfoDoc(int VoxelType, int index, int infotype);
  • Redesigned RTFM voxel.

Some infos on these new voxels in the new Human Interface section here : http://www.blackvoxel.com/view.php?node=1519.

Example to get the input switch state :

Code: [Select]
state = Voxel_GetInfo(x,y,z,1);
Examples to set the input switch state :

Code: [Select]
state = Voxel_SetInfo(x,y,z,1, 1); // Set switch on
state = Voxel_SetInfo(x,y,z,1, 0); // Set switch off

Examples to set indicator light state :

Code: [Select]
state = Voxel_SetInfo(x,y,z,1, color); // Color can be 0...15
« Last Edit: November 10, 2013, 12:12:14 am by Enigma »

Qon

  • Full Member
  • ***
  • Posts: 112
    • View Profile
Re: Blackvoxel 1.22 Beta 7 is out
« Reply #1 on: November 11, 2013, 05:27:24 pm »
This is awesome! I really want to test these things.. a bit busy atm though. User input will fit perfectly with my auto faqtory that I haven't qompleted yet q: Time to get back to that one. With all the new features there's so many new projects that beqomes possible all the time!

So whats the point of the RTFM voxel, qan it do anything or is it just there to remind you?

olive

  • Administrator
  • Full Member
  • *****
  • Posts: 149
    • View Profile
Re: Blackvoxel 1.22 Beta 7 is out
« Reply #2 on: November 12, 2013, 03:25:30 am »
@Qon
Happy to see that you like these new features. We hope to add even more thing like that in the future.

Take your time to play with(and to do also other things you want to do) because there is no hurry.

The RTFM voxel was mainly a joke to make people understand they must read the manual for using this game. At this time, it has no other functionality.

Does this voxel will have other goals ? Maybe. We think about a mission system. It could be used for that, but it's not yet decided