[Old]Node Box Editor [0.9.2]

User avatar
webdesigner97
Member
Posts: 1328
Joined: Mon Jul 30, 2012 19:16
GitHub: webD97
IRC: webdesigner97
In-game: webdesigner97
Location: Cologne, Germany
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by webdesigner97 » Post

Sound great! /me downloads

User avatar
philipbenr
Member
Posts: 1897
Joined: Fri Jun 14, 2013 01:56
GitHub: philipbenr
IRC: philipbenr
In-game: robinspi
Location: United States

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by philipbenr » Post

Cool. Will do Rubenwardy.

Pretty word .... infinity .... good marketing language.

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

'Unlimited' wouldn't fit in the title...
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

TG-MyinaWD
Member
Posts: 356
Joined: Thu May 08, 2014 21:22
GitHub: Maddie-Myina
IRC: Maddie-Myina
In-game: .
Location: Far Eden

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by TG-MyinaWD » Post

Hey rubenwardy is it, ok I can Create and run a site for this Nodebox Editor of yours? Maybe have it called Nodebox MT Center. Where people can share Unlimited, amount of there Nodeboxs? and upload there .nbe's.

But anyways here I just made today.
It Version 1 of Dragon Egg. Using MT Default Obsidian Textures.
Dragon Egg V1
Dragon Egg V1
Dragon_Egg_V1.png (313.57 KiB) Viewed 874 times
I'm a Transgender no shame about it.
I prefer to be considered as a "Girl/Lady/Miss/Madam/Female" for now on.

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

Alt. Testor wrote:Hey rubenwardy is it, ok I can Create and run a site for this Nodebox Editor of yours? Maybe have it called Nodebox MT Center. Where people can share Unlimited, amount of there Nodeboxs? and upload there .nbe's.

But anyways here I just made today.
It Version 1 of Dragon Egg. Using MT Default Obsidian Textures.
Dragon_Egg_V1.png
You are welcome to. I would love to see such a site XD
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
philipbenr
Member
Posts: 1897
Joined: Fri Jun 14, 2013 01:56
GitHub: philipbenr
IRC: philipbenr
In-game: robinspi
Location: United States

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by philipbenr » Post

Same. I discontinued my other website that had a modmaker... Oh well. I hope this will be a success.

TG-MyinaWD
Member
Posts: 356
Joined: Thu May 08, 2014 21:22
GitHub: Maddie-Myina
IRC: Maddie-Myina
In-game: .
Location: Far Eden

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by TG-MyinaWD » Post

I am still designing the Website and adding a Forum and other such but...
You can visit now :) just click on the link in my signature. and yeah I gave you a notice on, it too so everyone visit the site knows who built it, and such plus I did a button you can click to go to this topic.

So got any requests? then use the contact page. or just pm me.
Here the link: Minetest Nodebox Center

Oh and if you don't like add your Minetest Forum name or don't have one just use "NULL".
I'm a Transgender no shame about it.
I prefer to be considered as a "Girl/Lady/Miss/Madam/Female" for now on.

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

Added support for Minetest Classic. Only available with a latest build (the Windows build does not include it).

Code: Select all

void content_nodebox_stair(ContentFeatures *f)
{
      f->setNodeBox(core::aabbox3d<f32>(
            -0.5*BS,
            -0.5*BS,
            -0.5*BS,
             0.5*BS,
             0,
             0.5*BS
      ));

      f->addNodeBox(core::aabbox3d<f32>(
            -0.5*BS,
             0.,
             0.,
             0.5*BS,
             0.5*BS,
             0.5*BS
      ));
}
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
darkrose
Member
Posts: 91
Joined: Mon Jun 04, 2012 04:25

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by darkrose » Post

rubenwardy wrote:Added support for Minetest Classic.
Yey!

Code: Select all

void content_nodebox_stair(ContentFeatures *f)
{
      f->setNodeBox(core::aabbox3d<f32>(
            -0.5*BS,
            -0.5*BS,
            -0.5*BS,
             0.5*BS,
             0,
             0.5*BS
      ));

      f->addNodeBox(core::aabbox3d<f32>(
            -0.5*BS,
             0.,
             0.,
             0.5*BS,
             0.5*BS,
             0.5*BS
      ));
}
This is awesome. :)

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

Added support for make install

If you receive an error like "no rules for make target install", then you are not following the cmake step currently. You must use -DRUN_IN_PLACE=0

Code: Select all

# Download source and go to the root folder
$ sudo apt-get install build-essential libirrlicht-dev cmake libpng12-dev libbz2-dev libjpeg8-dev libgl1-mesa-dev

# Compile and Install
$ cmake . -DRUN_IN_PLACE=0     # THIS IS IMPORTANT!
$ make -j2
$ sudo make install

# Run
$ nodeboxeditor
Last edited by rubenwardy on Thu Jun 19, 2014 13:56, edited 2 times in total.
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

Amaz
Member
Posts: 354
Joined: Wed May 08, 2013 08:26
GitHub: Amaz1
IRC: Amaz
In-game: Amaz

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by Amaz » Post

This doesn't work for by default, with the media folder in the NBE directory. I have to have the media folder in the bin directory for it to work. (Latest from Github.)

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

Please read the instructions.

You should run it by clicking run_script.sh in the root folder, typing $ ./bin/nodeboxeditor or move nodeboxeditor to the root folder.

Future versions will fix this automatically.
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

Amaz
Member
Posts: 354
Joined: Wed May 08, 2013 08:26
GitHub: Amaz1
IRC: Amaz
In-game: Amaz

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by Amaz » Post

Right. Didn't read the instructions... Thought it would be the same! Thanks! I really should read instructions.
And I really like the way that new nodeboxes (Is that the right plural?!) start off as a full node. Great work.

User avatar
JPRuehmann
Member
Posts: 334
Joined: Fri Mar 21, 2014 21:40
Location: Germany
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by JPRuehmann » Post

Hello
sudo make install
is not working.
sudo make install
make: *** Keine Regel, um »install« zu erstellen. Schluss.
where wil it be installed to?
/usr/local/bin with root:root rw-,r--,r-- would be correct I think.
where should be the editor.conf file go?
I think ~/.local, ~/.config, ~/.nodeboxeditor or something like that would be propper.
Thanks,
JPR

User avatar
JPRuehmann
Member
Posts: 334
Joined: Fri Mar 21, 2014 21:40
Location: Germany
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by JPRuehmann » Post

Ups, forgot the execute rights.
should be rwx,r-x,r-x
sorry,
JPR

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

Keine Regel, um »install« zu erstellen. Schluss.
You MUST run cmake . -DRUN_IN_PLACE=0 first.
Currently editor.conf should go to /usr/local/nbe/editor.conf

Code: Select all

cmake . -DRUN_IN_PLACE=0
make -j3
sudo make install
nodeboxeditor
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
JPRuehmann
Member
Posts: 334
Joined: Fri Mar 21, 2014 21:40
Location: Germany
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by JPRuehmann » Post

Thanks now it works.
By the Way my last answers take part off th inconf_fix_2

if that fix is back in the Master I´d like to try out and get to the Master.
Thanks,
JPR

User avatar
JPRuehmann
Member
Posts: 334
Joined: Fri Mar 21, 2014 21:40
Location: Germany
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by JPRuehmann » Post

Hello
The Programm works fine now, but the fonts are so tiny I can´t nearly read them.
How can I change that?
Thanks,
JPR

User avatar
crazyginger72
Member
Posts: 69
Joined: Wed Jan 01, 2014 07:57
GitHub: crazyginger72
IRC: cg72
In-game: crazyginger72
Location: gone to lunch

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by crazyginger72 » Post

cg72@cg72-minetest ~ $ nodeboxeditor
Inconsistency detected by ld.so: dl-version.c: 224: _dl_check_map_versions: Assertion `needed != ((void *)0)' failed!


i get this error but after going to the incon_fix_2 it worked fine, just thought ya might like to know :D

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

JPRuehmann wrote:Hello
The Programm works fine now, but the fonts are so tiny I can´t nearly read them.
How can I change that?
Thanks,
JPR
If the screen is mostly grey, then you are running it from the wrong place.
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
JPRuehmann
Member
Posts: 334
Joined: Fri Mar 21, 2014 21:40
Location: Germany
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by JPRuehmann » Post

Thanks
I´ve found that myself to.
It is the point that I´ve said for what the install and the Program should be changed for for being completely operational.
Working in a System Folder with User Rights is no good Idea.
The Binaries should go into /usr/local/bin.
The shared Files should go into /usr/local/share/nodeboxeditor.
The Docs should go into /usr/local/share/docs/nodeboxeditor
At the first run it should create the user Files (config and Projects Folder) in the Home Directory of the User ~/.nodeboxeditor/nodeboxeditor.conf, ~/nodeboxeditor/projects/.
The Userpaths should be configurable and last but not least a fully featured File Open, save Dialoque would be fine to have.
Thanks,
JPR

User avatar
Megaf
Member
Posts: 99
Joined: Fri Nov 01, 2013 18:00
GitHub: megaf
IRC: Megaf
In-game: Megaf
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by Megaf » Post

Hi Ruben, I'm trying it on a Samsung laptop running Debian Wheezy but I get this error and no texture will show up and it will use a weird font, any idea on how to fix it?

Code: Select all

Irrlicht Engine version 1.7.3
Linux 3.2.0-4-686-pae #1 SMP Debian 3.2.57-3+deb7u2 i686
Using renderer: OpenGL 3.0
Mesa DRI Intel(R) Sandybridge Mobile x86/MMX/SSE2: Tungsten Graphics, Inc
OpenGL driver version is 1.2 or better.
GLSL version: 1.3
Could not open file of texture: media/texture_terrain.png
Could not open file of texture: media/sky.jpg
Needed 0ms to create OctreeTriangleSelector.(1 nodes, 12 polys)
Could not load font because the file does not exist: media/fontlucida.png
Could not open file of texture: media/icon_mode_nodebox.png
Could not open file of texture: media/gui_scale.png
Could not open file of texture: media/texture_box.png
Thanks.

User avatar
crazyginger72
Member
Posts: 69
Joined: Wed Jan 01, 2014 07:57
GitHub: crazyginger72
IRC: cg72
In-game: crazyginger72
Location: gone to lunch

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by crazyginger72 » Post

Megaf, i get that same error if i am running it from the home dir. i made a .sh to cd to the "NodeBoxEditor" dir then run it. if you cd first it will run fine as this happens on all of my pcs and everyone i have helped to install this programs pcs also,

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Editor] Node Box Editor [0.6.4] - infinite boxes, bug f

by rubenwardy » Post

Try run_editor.sh in the root of the project.

Shadowninja moved the media files to make it so you need to run from the root.

I am currently making it so it automatically looks for the textures, whether run from root dir or double clicked in the bin folder. Will be in 0.6.5
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
rubenwardy
Moderator
Posts: 6978
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

0.6.5 released!

by rubenwardy » Post

0.6.5 released!

Windows Build

You can now run the editor just by clicking on the executable file.

The way you compile and install the editor has changed. You no longer need to use DRUN_IN_PLACE

Code: Select all

# download source and go to the root folder
$ sudo apt-get install build-essential libirrlicht-dev cmake libpng12-dev libbz2-dev libjpeg8-dev libgl1-mesa-dev
$ cmake .
# replace 2 with the number of cores you have + 1
$ make -j2

# to run
$ ./bin/nodeboxeditor
# or double click the executable in bin/

# To install
$ sudo make install
$ nodeboxeditor
# Please read docs/make_install.md for stuff you need to know.
New features
  • Add support for make install
  • Automatically find working directory
  • Install as an application on Ubuntu (tiemay, rubenwardy)
  • Add support for Minetest Classic
Bug Fixes
  • Inconsistency detected fix
  • Fix build error when bin directory does not exist (ShadowNinja)
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

Post Reply

Who is online

Users browsing this forum: No registered users and 3 guests