<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[GMan's Mods & Stuff — Bug Reports]]></title>
		<link>https://gprogs.com/index.php</link>
		<atom:link href="https://gprogs.com/extern.php?action=feed&amp;fid=3&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at GMan's Mods & Stuff.]]></description>
		<lastBuildDate>Tue, 23 Jul 2013 13:24:54 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[xeffects crash in addPostProcessingEffectFromFile]]></title>
			<link>https://gprogs.com/viewtopic.php?id=483&amp;action=new</link>
			<description><![CDATA[<p>Like the title says:<br />All examples of xeffect crash in the method effect.addPostProcessingEffectFromFile() although the filepath is valid.<br />But the irrlicht core runs perfectly on my computer.</p><p>Any ideas?</p><p>EDIT:<br />Nevermind. I&#039;m using Unity3D now.</p>]]></description>
			<author><![CDATA[null@example.com (unz)]]></author>
			<pubDate>Tue, 23 Jul 2013 13:24:54 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=483&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Can't AddVertex (BB3D Irrlicht)]]></title>
			<link>https://gprogs.com/viewtopic.php?id=469&amp;action=new</link>
			<description><![CDATA[<p>hello together,</p><p>my problem is i want create a triangle like you can see in the following code. But i get an error every time in the surface.bmx. What should i do????</p><p>&nbsp; </p><div class="codebox"><pre><code>SuperStrict
Import irrlicht.b3d

ib3d_Graphics3D(800, 600, 32, 0, True, True, EDT_DIRECT3D8)



Global cam:CAMERA = ib3d_CreateCamera()
ib3d_PositionEntity(cam, 0, 0, -10)

Global light1:LIGHT = ib3d_CreateLight()
ib3d_PositionEntity(light1, 0, 0, 0)
 &#039;SMeshBuffer() 

Global cube:MESH = ib3d_CreateMesh()
Global surf:SURFACE = ib3d_CreateSurface(cube, SF_NORMAL)    
Global v1:Int = ib3d_AddVertex(surf, 0,0 , 0)
Global v2:Int = ib3d_AddVertex(surf, 1, -1, 0)
Global v3:Int = ib3d_AddVertex(surf, -1, -1, 0)
ib3d_AddTriangle(surf, v1, v2, v3)
ib3d_UpdateNormals(cube)

While Not ib3d_KeyDown(KEY_ESCAPE)


    ib3d_UpdateWorld
    ib3d_RenderWorld
WEnd</code></pre></div><p>Surface.bmx<br />The error show that something in this wrong in this Method:</p><p>&nbsp; </p><div class="codebox"><pre><code>    &#039; TODO: dont think this is working right.  need to examine source of addTestSceneNode().
    Method addVertex:Int(x:Float,y:Float,z:Float,nx:Float=0,ny:Float=0,nz:Float=0,u:Float=0,v:Float=0)
        If Not _mbuf Or Not _mbuf.isValid() Then RuntimeError &quot;Surface meshbuffer is invalid&quot;
Rem
        Local vert:S3DVertex=S3DVertexDefault.createFromVals(x,y,z,nx,ny,nz,SColor.createFromVals(255,255,255,255),u,v)
        Local vert_array:S3DVertex[1] = vert
        &#039;DebugLog(&quot;before: &quot;+_mbuf.getVertices().size())
        _mbuf.getVertices().push_back(vert)
        &#039;DebugLog(&quot;after: &quot;+_mbuf.getVertices().size())
EndRem
        RuntimeError &quot;Not Implemented&quot;
        Return _mbuf.getVertexCount()-1
    EndMethod</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Mangoo)]]></author>
			<pubDate>Sun, 06 Jan 2013 20:40:31 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=469&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Unable to compile Mods using irrlicht.core, iostream.h missing]]></title>
			<link>https://gprogs.com/viewtopic.php?id=442&amp;action=new</link>
			<description><![CDATA[<p>Well, yeah the title says it all. I cannot compile Mods and Programs using Irrlicht.* because of iostream.h missing.(MT binaries are too not there, so I have to manually create them...)<br />I also cannot use my resourcemanager, because of the same issue.<br />I&#039;d like to get that missing file, Without it I&#039;m unable to use Irrlicht.* <img src="https://gprogs.com/img/smilies/hmm.png" width="15" height="15" alt="hmm" /></p>]]></description>
			<author><![CDATA[null@example.com (Xaymar)]]></author>
			<pubDate>Sat, 04 Jun 2011 19:04:17 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=442&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Scribal Error]]></title>
			<link>https://gprogs.com/viewtopic.php?id=438&amp;action=new</link>
			<description><![CDATA[]]></description>
			<author><![CDATA[null@example.com (Lobby)]]></author>
			<pubDate>Thu, 28 Apr 2011 15:21:26 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=438&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Bugfix (orthogonal cameras)]]></title>
			<link>https://gprogs.com/viewtopic.php?id=435&amp;action=new</link>
			<description><![CDATA[<p>Hi,</p><p>Please exchange:</p><div class="codebox"><pre><code>void IrrScene_ICameraSceneNode_setProjectionMatrix(ICameraSceneNode* cam, matrix4* projection, bool isOrthogonal = false)
{
    if (cam)
        cam-&gt;setProjectionMatrix(*projection);
}</code></pre></div><p>with:</p><div class="codebox"><pre><code>void IrrScene_ICameraSceneNode_setProjectionMatrix(ICameraSceneNode* cam, matrix4* projection, bool isOrthogonal = false)
{
    if (cam)
        cam-&gt;setProjectionMatrix(*projection,isOrthogonal);
}</code></pre></div><p>Otherwise isOrthogonal() doesn&#039;t work.</p>]]></description>
			<author><![CDATA[null@example.com (porcus)]]></author>
			<pubDate>Wed, 16 Mar 2011 12:38:42 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=435&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Unable to scale Textures]]></title>
			<link>https://gprogs.com/viewtopic.php?id=432&amp;action=new</link>
			<description><![CDATA[<div class="codebox"><pre><code>Local snowTex:ITexture = engine.video.GetTexture(&quot;tex.png&quot;)
ter.terrainMeshSceneNode.setMaterialTexture(0, snowTex)
ter.terrainMeshSceneNode.getMaterial(0).getTextureMatrix(0).setTextureScale(1, 10)</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Lobby)]]></author>
			<pubDate>Sun, 19 Dec 2010 10:44:22 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=432&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Example #10 Doesn't Compile]]></title>
			<link>https://gprogs.com/viewtopic.php?id=423&amp;action=new</link>
			<description><![CDATA[<div class="codebox"><pre><code>Compile Error: Unable to convert from String to IReadFile</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (GNS)]]></author>
			<pubDate>Mon, 26 Jul 2010 08:36:32 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=423&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Typo in SceneManager Bmax wrapper]]></title>
			<link>https://gprogs.com/viewtopic.php?id=416&amp;action=new</link>
			<description><![CDATA[<p>in iscenemanager.bmx line 484</p><p>Method creatSkinnedMesh:ISkinnedMesh()</p><p>should be </p><p>Method createSkinnedMesh:ISkinnedMesh()</p>]]></description>
			<author><![CDATA[null@example.com (leondrake)]]></author>
			<pubDate>Fri, 25 Jun 2010 18:56:14 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=416&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Mod 1.6 on Mac]]></title>
			<link>https://gprogs.com/viewtopic.php?id=412&amp;action=new</link>
			<description><![CDATA[<p>I downloaded the module and mac intel binaries and installed in Blitzmax 1.39 on my Macbook. The window example file compiles OK but when it tries to link the busy pointer just goes round and round and I have to force quit Blitzmax. A debug app is apparently built but this freezes on running. Has anyone used the mac version satisfactorily??<br />Many thanks<br />Matthew</p>]]></description>
			<author><![CDATA[null@example.com (matty47)]]></author>
			<pubDate>Sun, 02 May 2010 21:31:26 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=412&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[buld latest module]]></title>
			<link>https://gprogs.com/viewtopic.php?id=407&amp;action=new</link>
			<description><![CDATA[<div class="codebox"><pre><code>void IrrGUI_IGUISkin_draw3DButtonPanePressed(IGUISkin* skin,IGUIElement* element, 
                const rect&lt;s32&gt;* rect,
                const rect&lt;s32&gt;* clip=0)
    {
        if (skin)
            skin-&gt;draw3DButtonPanePressed(element,*rect,clip);
    }</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (VicToMeyeZR)]]></author>
			<pubDate>Sat, 06 Mar 2010 17:01:57 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=407&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[win32window_id3d sample]]></title>
			<link>https://gprogs.com/viewtopic.php?id=405&amp;action=new</link>
			<description><![CDATA[<p>This line</p><p>Import MaxGUI.Win32MaxGUI</p><p>For new version should be</p><p>Import MaxGUI.Win32MaxGUIEx</p>]]></description>
			<author><![CDATA[null@example.com (VicToMeyeZR)]]></author>
			<pubDate>Thu, 04 Mar 2010 01:32:54 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=405&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Problem with helloWorld sample on windows 7 x64...]]></title>
			<link>https://gprogs.com/viewtopic.php?id=400&amp;action=new</link>
			<description><![CDATA[<p>I&#039;m running blitzmax 1.37 and the 1.6 irrlicht mod. I get:</p><p>&quot;---------------------------<br />01.helloworld.debug.exe - System Error<br />---------------------------<br />The program can&#039;t start because Irrlicht.dll is missing from your computer. Try reinstalling the program to fix this problem. <br />---------------------------<br />OK&nbsp; &nbsp;<br />---------------------------<br />&quot;<br />I copied the irrlicht.dll and D3DX8ab.dll files into windows/system32 directory like the instructions say to do.</p><p>Is there something I&#039;m missing.</p><p>Thanks,<br />maharg</p>]]></description>
			<author><![CDATA[null@example.com (maharg)]]></author>
			<pubDate>Fri, 22 Jan 2010 23:11:16 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=400&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Bug in smgr.getMeshFromFileIO ?]]></title>
			<link>https://gprogs.com/viewtopic.php?id=396&amp;action=new</link>
			<description><![CDATA[<div class="codebox"><pre><code>Incbin &quot;cone.b3d&quot;
Incbin &quot;cube.b3d&quot;
Incbin &quot;cylinder.b3d&quot;
Incbin &quot;pyramid.b3d&quot;
Incbin &quot;sphere.b3d&quot;
Incbin &quot;plane.b3d&quot;

Function CreatePlane:ianimatedmeshscenenode()
Local mtmp:ireadfile=device.getfilesystem().creatememoryreadfile(IncbinPtr(&quot;plane.b3d&quot;),IncbinLen(&quot;plane.b3d&quot;),&quot;Plane.b3d&quot;,False)
Local mtmpb:ianimatedmeshscenenode=smgr.addanimatedmeshscenenode(smgr.getMeshFromFileIO(mtmp))
mtmpb.setmaterialflag(emf_lighting,False)
mtmp.drop()
Return mtmpb
End Function

Function CreateCone:ianimatedmeshscenenode()
Local mtmp:ireadfile=device.getfilesystem().creatememoryreadfile(IncbinPtr(&quot;cone.b3d&quot;),IncbinLen(&quot;cone.b3d&quot;),&quot;Cone.b3d&quot;,False)
Local mtmpb:ianimatedmeshscenenode=smgr.addanimatedmeshscenenode(smgr.getMeshFromFileIO(mtmp))
mtmpb.setmaterialflag(emf_lighting,False)
mtmp.drop()
Return mtmpb
End Function

Function CreateCube:ianimatedmeshscenenode()
Local mtmp:ireadfile=device.getfilesystem().creatememoryreadfile(IncbinPtr(&quot;cube.b3d&quot;),IncbinLen(&quot;cube.b3d&quot;),&quot;Cube.b3d&quot;,False)
Local mtmpb:ianimatedmeshscenenode=smgr.addanimatedmeshscenenode(smgr.getMeshFromFileIO(mtmp))
mtmpb.setmaterialflag(emf_lighting,False)
mtmp.drop()
Return mtmpb
End Function

Function CreateCylinder:ianimatedmeshscenenode()
Local mtmp:ireadfile=device.getfilesystem().creatememoryreadfile(IncbinPtr(&quot;cylinder.b3d&quot;),IncbinLen(&quot;cylinder.b3d&quot;),&quot;Cylinder.b3d&quot;,False)
Local mtmpb:ianimatedmeshscenenode=smgr.addanimatedmeshscenenode(smgr.getMeshFromFileIO(mtmp))
mtmpb.setmaterialflag(emf_lighting,False)
mtmp.drop()
Return mtmpb
End Function

Function CreatePyramid:ianimatedmeshscenenode()
Local mtmp:ireadfile=device.getfilesystem().creatememoryreadfile(IncbinPtr(&quot;pyramid.b3d&quot;),IncbinLen(&quot;pyramid.b3d&quot;),&quot;Pyramid.b3d&quot;,False)
Local mtmpb:ianimatedmeshscenenode=smgr.addanimatedmeshscenenode(smgr.getMeshFromFileIO(mtmp))
mtmpb.setmaterialflag(emf_lighting,False)
mtmp.drop()
Return mtmpb
End Function

Function CreateSphere:ianimatedmeshscenenode()
Local mtmp:ireadfile=device.getfilesystem().creatememoryreadfile(IncbinPtr(&quot;sphere.b3d&quot;),IncbinLen(&quot;sphere.b3d&quot;),&quot;Sphere.b3d&quot;,False)
Local mtmpb:ianimatedmeshscenenode=smgr.addanimatedmeshscenenode(smgr.getMeshFromFileIO(mtmp))
mtmpb.setmaterialflag(emf_lighting,False)
mtmp.drop()
Return mtmpb
End Function</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (porcus)]]></author>
			<pubDate>Mon, 28 Dec 2009 20:45:31 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=396&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[SmoothEventReciever - error when key pressed]]></title>
			<link>https://gprogs.com/viewtopic.php?id=390&amp;action=new</link>
			<description><![CDATA[<p>Im using the latest addons.zip 2008 06 09 with irrlicht 1.5.1. and Blitzmax 1.34. I get an error when I press any key .&quot;Unhandled Exception:Attempt to index array element beyond array length.</p><p>on 5th line of OnEvent Method</p><div class="codebox"><pre><code>&#039; push the key
            m_char_buf = m_char_buf[..m_char_buf.Dimensions()[0] + 1]  &lt;- here!!
            m_char_buf[m_char_buf.Dimensions()[0] - 1] = key
        
            m_key_buf_old[key] = m_key_buf[key]
            m_key_buf[key] = event.getKeyPressedDown()</code></pre></div><p>I created the receiver with:-</p><div class="codebox"><pre><code>Receiver:SmoothEventReceiver = SmoothEventReceiver.createReceiver()
device.setEventReceiver(Receiver)</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Kronos)]]></author>
			<pubDate>Fri, 18 Sep 2009 16:29:21 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=390&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Error on Blitzmax 1.32 - Procedure Entry Point could not be located]]></title>
			<link>https://gprogs.com/viewtopic.php?id=375&amp;action=new</link>
			<description><![CDATA[<p>I installed Irrlicht 1.5, and compiled it myself with the latest MinGW build using Blitzmax 1.32. When i tried to run any examples, with both the Irrlicht.dll in the folder and in system32, i get this error:</p><p>&#039;The Procedure Entry Point _ZN3ir12createDeviceENS_5video13E_DRIVER_TYPEERKNS_4core11dimension2diIEEjbbbPNES_13IEventRecieverE could not be located in the dynamic link library Irrlicht.dll&#039;</p><p>Anyone else having this problem?</p>]]></description>
			<author><![CDATA[null@example.com (Mog)]]></author>
			<pubDate>Sat, 11 Apr 2009 20:57:39 +0000</pubDate>
			<guid>https://gprogs.com/viewtopic.php?id=375&amp;action=new</guid>
		</item>
	</channel>
</rss>
