Blendigo 3.8.25.0

Announcements, requests and support regarding the Blender Indigo export script
User avatar
Headroom
Indigo 100
Posts: 1058
Joined: Wed Aug 08, 2007 1:07 pm
Location: Spartanburg, SC, USA
Contact:

Re: Blendigo 3.8.25.0

Post by Headroom » Sun Sep 20, 2015 10:43 am

I believe the Indigo SDK would allow rendering in the Blender viewport. The developers would be able to tell you more about that.



Sent from my iPad using Tapatalk
iMac 2.93 GHz Quad Core i7. 12 GB memory
ATI Radeon HD 5750M 1024 MB
OS X 10.10.3 Yosemite
Blender 2.72, Blendigo 3.8.25, Indigo 3.8.26

Trippy Lighting LLC - Colorful LED lighting systems
High Power RGB LED driver - Blog

User avatar
Oscar J
1st Place Winner
Posts: 2204
Joined: Sat Mar 31, 2012 3:47 am
Location: Gothenburg, Sweden
3D Software: Blender

Re: Blendigo 3.8.25.0

Post by Oscar J » Sun Sep 20, 2015 10:46 am

This sounds amazing!!!

User avatar
zurkdahool
Posts: 34
Joined: Thu Aug 27, 2015 12:14 am
Location: Germany, Berlin

Re: Blendigo 3.8.25.0

Post by zurkdahool » Sun Sep 20, 2015 10:54 am

Headroom wrote:I believe the Indigo SDK would allow rendering in the Blender viewport. The developers would be able to tell you more about that.
Well.... with a little help from my friends ;-)

Btw. where do i find the Rotation/Scale parameter for textures in blendigo?

edit 1: example what i mean with a clay render button mentioned before:
kueche_indigo_Clay_comp.jpg

User avatar
dakiru
Indigo 100
Posts: 747
Joined: Mon Jun 22, 2009 6:51 am

Re: Blendigo 3.8.25.0

Post by dakiru » Sun Sep 20, 2015 11:10 am

zurkdahool wrote:Btw. where do i find the Rotation/Scale parameter for textures in blendigo?
In UV/Image editor, if I understand correctly.

User avatar
lycium
Posts: 1216
Joined: Wed Sep 12, 2007 7:46 am
Location: Leipzig, Germany
Contact:

Re: Blendigo 3.8.25.0

Post by lycium » Thu Sep 24, 2015 6:59 am

zurkdahool wrote:So much exciting stuff to code! :-)
Great work!

Since 2/3 Glare members are in Berlin (and Nick thinks about visiting this year too!) we should meet up maybe :)

User avatar
zurkdahool
Posts: 34
Joined: Thu Aug 27, 2015 12:14 am
Location: Germany, Berlin

Re: Blendigo 3.8.25.0

Post by zurkdahool » Thu Oct 01, 2015 8:59 am

So much exciting stuff to code! :-)
some words about my progress on blendigo...

blendigo is well coded and overall it is done very clever in some way... but ;-) i found some strangeness inside the code (e.g. class handling, duplicated code and so on...) which makes it hard to me to extend blendigo in a professional way without 'dirty hacks' or in a way which makes sense to me at the moment. ... or i don't get it :-)

For example: i tried to implement the uid tag into the exported scene file and change the 'internal_medium_name' tag to 'internal_medium_uid' tag with at least effort. to be successful a uid must be used everywhere (for every xml-node). because if you are saving the scene from indigo and have no unique uid it will be generated... i don't have to say whats happened if it's not unique and you try to reload the scene ;-) Also the right coupling between medium and material uid must be done on uid base.... Of course it is possible but the way i have to implement this feature into the existing code is not what i like. I am also thinking about features like <model2> ....


at the moment i stopped coding and thinking about what to do next. some ideas which are whiz through my head:

a) refactoring blendigo
personally my intension is to contribute blendigo with extensions and additional features but i am not interested in refactoring blendigo at the moment

b) re-write essential parts (e.g. igmesh / xml export) in C++ as a python extension
other exporters goes this way and it works great. maybe in the future it is also possible to integrate also a live preview with this way. I really like this idea to refresh my rusty c/c++ knowledge

c) integrate 'blendigo' directly in blender
integrate directly in blender (like octane renderer does with the special blender version). i don't like it because to much work....

d) ask someone who can explain me some internals about the blendigo code

e) leave blendigo as it is
no way...


i will contribute to blendigo in the future but at the moment i am not sure how i can do that...

User avatar
Oscar J
1st Place Winner
Posts: 2204
Joined: Sat Mar 31, 2012 3:47 am
Location: Gothenburg, Sweden
3D Software: Blender

Re: Blendigo 3.8.25.0

Post by Oscar J » Thu Oct 01, 2015 9:44 am

It would be a crying shame if you didn't get the assistance you need with this. I think you might be exactly the guy blendigo needs! :)

User avatar
zurkdahool
Posts: 34
Joined: Thu Aug 27, 2015 12:14 am
Location: Germany, Berlin

Re: Blendigo 3.8.25.0

Post by zurkdahool » Fri Oct 02, 2015 8:19 am

hmmmm... maybe,maybe not. who knows .... i think i should free my mind from the current blendigo code and think about a new approach.... will free my mind at the weekend with paragliding and do some 'architecture summit' after the weekend.... maybe i will come with new ideas ;-)

User avatar
Oscar J
1st Place Winner
Posts: 2204
Joined: Sat Mar 31, 2012 3:47 am
Location: Gothenburg, Sweden
3D Software: Blender

Re: Blendigo 3.8.25.0

Post by Oscar J » Fri Oct 02, 2015 8:27 am

Nothing like some good ol' paragliding to clear your mind. :lol:

User avatar
zurkdahool
Posts: 34
Joined: Thu Aug 27, 2015 12:14 am
Location: Germany, Berlin

Re: Blendigo 3.8.25.0

Post by zurkdahool » Fri Oct 02, 2015 8:32 am

Oscar J wrote:Nothing like some good ol' paragliding to clear your mind. :lol:
Exactly! like my club mate: http://xc.dhv.de/xc/modules/leonardo/in ... tID=680265 he is now so relaxed after >150km *hohohooho*

User avatar
OnoSendai
Developer
Posts: 6241
Joined: Sat May 20, 2006 6:16 pm
Location: Wellington, NZ
Contact:

Re: Blendigo 3.8.25.0

Post by OnoSendai » Sat Oct 03, 2015 3:57 am

zurkdahool wrote:blendigo is well coded and overall it is done very clever in some way... but ;-) i found some strangeness inside the code (e.g. class handling, duplicated code and so on...) which makes it hard to me to extend blendigo in a professional way without 'dirty hacks' or in a way which makes sense to me at the moment. ... or i don't get it :-)
I have also found the blendigo code to be a bit confusing, trying to work out the control flow etc.. So it's not just you :)

User avatar
zurkdahool
Posts: 34
Joined: Thu Aug 27, 2015 12:14 am
Location: Germany, Berlin

Re: Blendigo 3.8.25.0

Post by zurkdahool » Thu Oct 08, 2015 8:05 pm

Hi,

after thinking about what to do next i have an idea what i am doing now. First step is a kind of a blendigo re-write. Because there are big changes in the code base i can not guarantee that the code will be compatible to the current blendigo code. We will see (maybe it becomes a fork). i don't know at the moment...

Next step for me is to move the exporter code to a new python module (written in c++) which makes it hopefully easy to connect it later to the indigo sdk (which means we can use the blender viewport). this is the result to keep blendigo available for all platforms (e.g. as far as i know there is no linux sdk available at the moment.) thanks to Ono for the sdk support!

at the moment i am doing some planning and 'software architecture' stuff . don't expect too much in the next weeks because there is a lot of work and i am doing this in my free time. i will post some news about the progress from time to time here in the forum. beside of that i will contribute some code to the original blendigo code...

User avatar
snorky
Indigo 100
Posts: 331
Joined: Fri Apr 17, 2009 8:54 pm
Location: Parma, Italy

Re: Blendigo 3.8.25.0

Post by snorky » Thu Oct 08, 2015 10:00 pm

zurkdahool wrote:...
:!:

User avatar
afecelis
Posts: 749
Joined: Tue Aug 01, 2006 4:14 am
Location: Colombia
3D Software: Blender
Contact:

Re: Blendigo 3.8.25.0

Post by afecelis » Sat Nov 14, 2015 10:14 am

+1 for rendering within blender's viewport! :D
Then, and only then, shall Indigo be a trueRT engine. Not to mention how much time it will save us by looking at the changes right away and being able to adjust them without having to wait for the scene to get exported to the main Indigo application.

what if... we ran some sort of crowdfunding to support zurkdahool 's work? I'd be willing to donate, dunno about my other fellow blenderheads ;)
AMD Ryzen 7 1800 @3.6ghz, 32GB ddr4 3200 mhz Ram, Nvidia RTX 3060 12GB, Win10, Blender/Sketchup/Modo/Cinema4d

User avatar
Headroom
Indigo 100
Posts: 1058
Joined: Wed Aug 08, 2007 1:07 pm
Location: Spartanburg, SC, USA
Contact:

Re: Blendigo 3.8.25.0

Post by Headroom » Mon Nov 30, 2015 3:53 pm

Blendigo's error messages have ever been a test for my patience.
I've removed every object from the scene except the camera and the hemi light (HDR).
Rendering had worked just a few operations before I edited one object by adding a few plane meshes to act as light sources.

'Mesh' object has no attribute 'indigo_camera'

What the heck does that mean ?

Edit:

OK, now that heart rate is down again I can report that identified the defiant mesh and simply deleted it. I still have NO idea how to relate the error message to that mesh. Moving the mesh to another, not rendered layer also did not make a difference. The error still appeared. The mesh had to be deleted.

Post Reply
75 posts

Who is online

Users browsing this forum: No registered users and 26 guests