Page 1 of 2

Blendigo 2.2.11

Posted: Tue Dec 15, 2009 2:36 am
by dougal2
This version can be considered a Release Candidate for Indigo 2.2 stable. Please report show-stopping bugs only.


Windows

http://indigorenderer.com/dist/exporter ... taller.exe


Linux

http://www.indigorenderer.com/dist/expo ... .11.tar.gz


OSX

http://www.indigorenderer.com/dist/expo ... 2.2.11.zip

Changes in this release:
* Reduce progress bar updates for large scenes.
* Changes to make assets (images) location work on Vista
* Fixed logic error on GUI launch failure console message.
* Remove python-UTF8 coding mark from _igmesh module. (causes BOM error).
* Added back backbody emission and emission gain/exponent.
* Added error handling to launchGui if indigo executable not found.
* Fix colour picker and specular reflectivity GUI issues.
* Tentative camera rotation motion blur fix. Some oddness at start+end of motion.



Once 2.2 stable is released, I will be working hard on bringing some new features (and some old missing ones) to Blendigo for the next major Indigo version. Some of these require major changes and require much testing, it is too early to make them part of the forthcoming 2.2 stable release.

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 3:51 am
by Polinalkrimizei
I get this error message when choosing windows installer:

Forbidden

You don't have permission to access /dist/exporters/blendigo/blendigo-2.2.11-installer.exe on this server.

:(

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 4:20 am
by Jambert
Great wrok Dougal2, realy thx for it :D

edit: can't access windows download :?

Forbidden

You don't have permission to access /dist/exporters/blendigo/blendigo-2.2.11-installer.exe on this server.
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 mod_python/3.3.1 Python/2.5.2 PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g Phusion_Passenger/2.2.2 Server at www.indigorenderer.com Port 80

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 4:58 am
by SzLaszlo
Hi,

I wrote the Indigo 2.2.11 topic ( Post14 Dec 2009 06:28 ) ,"I can't see the emit mesh light power . "

This blendigo ( 2.2.11.) good ,the emit mesh work ( is the light power ) ,But I haven't SUN :( ( Sky layer is ) .

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 5:27 am
by dougal2
Update: fixed permissions on downloads - apologies for that.

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 6:18 am
by dougal2
Update: Added OSX installer.

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 3:25 pm
by FakeShamus
the "XM" export meshes button doesn't seem to work here on OSX.
unclicked and it still exports the meshes every time.

and I think I see why I am still not getting the auto-launch to work on my system. it doesn't like spaces in the names of some of my folders - for example, my folder "Applications/3D content/" is giving an error like: "Applications/3D", "content/" could not be found. I will rename my folders, but is there a way for this to work regardless of the spaces?

edit:
yeah, actually, changing my folder names is causing too many problems for my scenes. I will live without auto-launching indigo for now

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 9:01 pm
by dougal2
FakeShamus wrote:the "XM" export meshes button doesn't seem to work here on OSX.
unclicked and it still exports the meshes every time.

and I think I see why I am still not getting the auto-launch to work on my system. it doesn't like spaces in the names of some of my folders - for example, my folder "Applications/3D content/" is giving an error like: "Applications/3D", "content/" could not be found. I will rename my folders, but is there a way for this to work regardless of the spaces?

edit:
yeah, actually, changing my folder names is causing too many problems for my scenes. I will live without auto-launching indigo for now
Thanks for the response, I will check the path quoting code.

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 10:31 pm
by dakiru
Hi :)

The emitters seem not to have the same power (actually, I don't see the tag for the power settings in the .igs at all). For example, left emitter is RGB, R1 G1 B1, 1500lum, Gain 1; right is Blackbody, 1500lum, 5000K, Gain 1:
rgb_blackbody.jpg
rgb_blackbody.jpg (88.91 KiB) Viewed 19915 times

Code: Select all

	<material>
		<name>em_left</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<rgb>
						<rgb>1.000000 1.000000 1.000000</rgb>
						<gamma>1</gamma>
					</rgb>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>

Code: Select all

	<material>
		<name>em_right</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<blackbody>
						<temperature>5000</temperature>
						<gain>1.000000</gain>
					</blackbody>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>

The setting in Blendigo was 1500 lumens, but for 15000 lumens the code looks the same.
The same strange thing happens to the Blackbody emitters just with different temperatures (3000K, 6000K), but the same power, for example:
blackbody_blackbody.jpg
blackbody_blackbody.jpg (160.99 KiB) Viewed 19917 times

Code: Select all

	<material>
		<name>em_left</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<blackbody>
						<temperature>3000</temperature>
						<gain>1.000000</gain>
					</blackbody>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>

Code: Select all

	<material>
		<name>em_right</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<blackbody>
						<temperature>6000</temperature>
						<gain>1.000000</gain>
					</blackbody>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 10:39 pm
by dougal2
I too noticed that blackbody power changes with temperature, and that power is somehow scaled differently when using blackbody vs. RGB.

I don't really think this is directly a Blendigo issue - perhaps Nick can comment on this ?

As for the actual power value not being exported, I will look into that.

Re: Blendigo 2.2.11

Posted: Tue Dec 15, 2009 11:31 pm
by dakiru
Here are the tests with the exactly same conditions, but exported from Blendigo 2.2.1 (camera tonemapping):
rgb_blackbody_2.2.1.jpg
rgb_blackbody_2.2.1.jpg (165.26 KiB) Viewed 19902 times

Code: Select all

	<material>
		<name>em_left</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<rgb>
						<rgb>1.000000 1.000000 1.000000</rgb>
						<gamma>1</gamma>
					</rgb>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>

Code: Select all

	<material>
		<name>em_right</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<blackbody>
						<temperature>5000</temperature>
						<gain>1.000000</gain>
					</blackbody>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>
Interesting thing is, that the power is not in the <material> part, but in the <model> part:

Code: Select all

	<model>
		<pos>-3.000000 0.000000 3.000000</pos>
		<scale>1.0</scale>
		<rotation>
			<matrix>
				1.000000 0.000000 0.000000 0.000000 -1.000000 0.000000 0.000000 -0.000000 -1.000000 
			</matrix>
		</rotation>
		<mesh_name>Plane.002</mesh_name>
		<emission_scale>
			<material_name>em_left</material_name>
			<measure>luminous_flux</measure>
			<value>1500.000000</value>
		</emission_scale>
	</model>

Code: Select all

	<!-- Plane.001 -->
	<model>
		<pos>3.000000 0.000000 3.000000</pos>
		<scale>1.0</scale>
		<rotation>
			<matrix>
				1.000000 0.000000 0.000000 0.000000 -1.000000 0.000000 0.000000 -0.000000 -1.000000 
			</matrix>
		</rotation>
		<mesh_name>Plane.001</mesh_name>
		<emission_scale>
			<material_name>em_right</material_name>
			<measure>luminous_flux</measure>
			<value>1500.000000</value>
		</emission_scale>
	</model>
blackbody_blackbody_2.2.1.jpg
blackbody_blackbody_2.2.1.jpg (127.68 KiB) Viewed 19899 times

Code: Select all

	<material>
		<name>em_left</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<blackbody>
						<temperature>3000</temperature>
						<gain>1.000000</gain>
					</blackbody>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>

Code: Select all

	<material>
		<name>em_right</name>
		<diffuse>
			<albedo>
				<constant><rgb>
					<rgb>0 0 0</rgb>
					<gamma>2.2</gamma>
				</rgb></constant>
			</albedo>
			<base_emission>
				<constant>
					<blackbody>
						<temperature>6000</temperature>
						<gain>1.000000</gain>
					</blackbody>
				</constant>
			</base_emission>
			<layer>1</layer>
		</diffuse>
	</material>

Re: Blendigo 2.2.11

Posted: Wed Dec 16, 2009 12:03 am
by dougal2
OK, I found the problem. Exporting the emitter power will be fixed in the next release. Indeed now both RGB and blackbody (5000K) of equal power appear equal brightness in the render.

Re: Blendigo 2.2.11

Posted: Wed Dec 16, 2009 12:16 am
by dakiru
dougal2 wrote:OK, I found the problem. Exporting the emitter power will be fixed in the next release. Indeed now both RGB and blackbody (5000K) of equal power appear equal brightness in the render.
That's great! :)

May I ask, will the emittance, luminance and intensity options be back in Blendigo emission scale settings, or only flux will stay?

Re: Blendigo 2.2.11

Posted: Wed Dec 16, 2009 12:25 am
by dougal2
I think 2.2 stable will have only the Power (luminous flux) parameter.
The other 'emission measures' (flux/intensity/emittance/luminance) will re-appear in the 2.3 series.

Re: Blendigo 2.2.11

Posted: Wed Dec 16, 2009 12:28 am
by dakiru
dougal2 wrote:I think 2.2 stable will have only the Power (luminous flux) parameter.
The other 'emission measures' (flux/intensity/emittance/luminance) will re-appear in the 2.3 series.
Great, thank you for reply :)