active questions tagged directx - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:37:37Zhttp://stackoverflow.com/feeds/tag/directxhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816851/hlsl-directx9-is-there-a-gettime-function-or-similar0HLSL DirectX9: Is there a getTime() function or similar?Andy2009-11-29T21:36:57Z2009-11-29T21:36:57Z
<p>Hi all.</p>
<p>I'm currently working on a project using C++ and DirectX9 and I'm looking into creating a light source which varies in colour as time goes on.</p>
<p>I know C++ has a timeGetTime() function, but was wondering if anyone knows of a function in HLSL that will allow me to do this?</p>
<p>Regards.
Andy.</p>
http://stackoverflow.com/questions/1816101/texturemappingu-v-in-common-vertex-structures0textureMappingu/v in common Vertex structures?Chris2009-11-29T17:18:04Z2009-11-29T18:09:51Z
<p>Looking through some directx examples, I'm often seeing the structure for a vertex to be defined as such:</p>
<pre><code>struct Vertex
{
vector position;
vector normal;
int textureMappingu;
int textureMappingv;
}
</code></pre>
<p>Under this type of vertex, what are textureMappingu/v for?</p>
http://stackoverflow.com/questions/1807338/code-leaks-memory-seems-to-be-coming-from-id3dxbuffer-unsure-why0Code leaks memory, seems to be coming from ID3DXBuffer, unsure why..meds2009-11-27T08:07:37Z2009-11-28T09:02:26Z
<p>I load a shader with the following:</p>
<blockquote>
<p>ID3DXBuffer* errors = 0; ID3DXEffect
*effect = 0;</p>
<p>HR(D3DXCreateEffectFromFile(
gd3dDevice, L"Shader.fx", 0, 0,
D3DXSHADER_DEBUG|D3DXSHADER_SKIPOPTIMIZATION,
0, &effect, &errors) );</p>
<p>for(int i = 0; i < 3; i++) {
if(errors) { errors->Release();
if(effect)
effect->Release();</p>
<p>errors = 0;
HR(D3DXCreateEffectFromFile(gd3dDevice,
L"Shader.fx",
0, 0, D3DXSHADER_DEBUG, 0, effect, &errors)); } else break; }</p>
</blockquote>
<p>Which is trying to load a shader and if it gets an error/warning it tries again 3 more times before giving up.</p>
<p>Now I've found when I close the application D3DX gives me the following message:</p>
<p>D3DX: MEMORY LEAKS DETECTED: 2 allocations unfreed (486 bytes)</p>
<p>and this ONLY happens when there are errors (i.e. it goes into the loop). I'm really not sure why this is happening, any ideas?</p>
<p>OK I fixed it, was just a logic issue, 'error' didn't have 'release' called on it on the third try hence the issue.</p>
http://stackoverflow.com/questions/1805666/how-to-store-a-vector-of-lpd3dxsprite-objects2How to store a vector of LPD3DXSPRITE objects?45012009-11-26T21:13:35Z2009-11-27T21:44:21Z
<p>Let's say I want to store a vector of LPD3DXSPRITE objects. The line to declare this code would be <code>std::vector<LPD3DXSPRITE> sprites;</code> I should be able to create my sprite with:</p>
<pre><code>LPD3DXSPRITE sprite = NULL;
D3DXCreateSprite(myRenderingDevice, &sprite);
</code></pre>
<p>Finally, I should be able to add this to the vector like so:</p>
<pre><code>sprites.push_back(sprite);
</code></pre>
<p>At least with my understanding, that should be plausible. However, this compiles but gives runtime errors. Why is this? Am I going about it wrong? How might I fix it?</p>
<p><strong>edit:</strong></p>
<p>This may be helpful as well. The call stack yields for this function that <code>vector<ID3DXSprite *, std::allocator<ID3DXSprite *>>::push_back(ID3DXSprite * const &_Val=0x0036fd38</code> is what is called. This is not the vector that it was passed.<br>
However, LPD3DXSPRITE is just a typedef for ID3DXSprite *. Could this bring anything to light?</p>
http://stackoverflow.com/questions/1804148/runtime-error-access-violation-when-using-pushback-with-a-stdvector1Runtime error: Access violation when using .push_back() with a std::vector?45012009-11-26T14:55:31Z2009-11-27T10:39:38Z
<p>I have a vector, defined by <code>std::vector<LPDIRECT3DTEXTURE9> textures;</code> Later, I am passing a <code>LPDIRECT3DTEXTURE9</code> object to it, like so <code>textures.push_back(texture);</code> Here is a sample of this:</p>
<pre><code>void SpriteManager::AddSprite(float x, float y, float z, LPDIRECT3DTEXTURE9 texture)
{
//snip
textures.push_back(texture);
//snip
}
</code></pre>
<p>This is causing a runtime error. It is breaking in the vector class at the <code>size()</code> function. Why might this happen? </p>
<p><strong>Edit:</strong></p>
<p>I also run into an identical problem performing the same operation on a vector of <code>D3DXVECTOR3</code> objects. Since <code>LPDIRECT3DTEXTURE9</code> is a pointer to an <code>IDIRECT3DTEXTURE9</code>, should I be using that instead?</p>
http://stackoverflow.com/questions/1802690/directx-managed-or-unmanaged1DirectX managed or unmanaged?Anurag2009-11-26T09:53:19Z2009-11-26T09:57:06Z
<p>I need basic information about DirectX. Is it a managed API or Unmanaged? Can someone provide me some link etc. explaining this?</p>
http://stackoverflow.com/questions/1800898/desktop-window-manager-capture-the-whole-screen0Desktop Window Manager capture the whole screenAlex2009-11-26T00:22:27Z2009-11-26T00:27:26Z
<p>Hello all,</p>
<p>I was wondering if anyone could give me a starting point of how to capture the entire screen in Windows Vista/7? I know how to do it in previous versions of Windows, but would really like to keep everything in the D3D stack, without resorting to GDI/BltBit calls.</p>
<p>I realize that you can get a live thumbnail of a given window if you have the HWND using the DWM API, but how do you get a "thumbnail" of the entire desktop?</p>
<p>Thanks,</p>
<p>Alex</p>
http://stackoverflow.com/questions/1800886/strange-error-with-hardware-picking-in-directx0Strange error with hardware picking in directxmarkblue7772009-11-26T00:19:41Z2009-11-26T00:19:41Z
<p>Hi all,
i am trying to get pickigng working in directx 9 and i am having some trouble. it works fine when i am rendering my mesh in software however i do get errors when rendering with a shader.
i can be off of a mesh but it still detects it as a hit (see image for more detail)</p>
<p>i am stopping animation controllers and updating frame matrices but still no joy with the picking.</p>
<p><a href="http://tweetphoto.com/a7vtajzt" rel="nofollow">http://tweetphoto.com/a7vtajzt</a></p>
<p>any help much apprechiated this has been driving me nuts for two days now.</p>
<p>regards
Mark</p>
http://stackoverflow.com/questions/1691538/what-3d-graphics-framework-should-i-use-for-a-real-world-game-engine2What 3D graphics framework should I use for a real world game engine.Koper2009-11-07T01:11:55Z2009-11-24T15:11:28Z
<p>Hello, I'm a C++ programmer with very extensive server programming experience. I'm however fairly bored at the moment and I decided to tackle a new area: 3D game programming, for learning purposes. Additionally I think this learning project may turn out to be good resume material in the future should I decide to work in this area.</p>
<p>Instead of creating a 3D engine from scratch I decided to emulate as exactly as I'm able an existing one: World of Warcraft's. If you are curious as to why (feel free to skip this):</p>
<ul>
<li>It's a real world successful game</li>
<li>All the map textures, models and what not are already done (I'm not interested in learning how to actually draw a texture with photoshop or whatever)</li>
<li>Their file formats have been more or less completely reverse engineered</li>
<li>There is already an identical open source project (wowmapview) that I can look at if I'm in trouble.</li>
</ul>
<p>ok, that was a long preface.. Now, my main question is the following: <strong>Should I use DirectX, OpenGL, wrapper libraries such as sdl, or what?</strong></p>
<p>What's the most used one in the real world?</p>
<p>And, something else that perplexes me: World of Warcraft appears to be using both! In fact, normally it uses DirectX, but you can use opengl by starting it with the "-opengl" switch via command line.</p>
<p>Is this something common in games? Why did they do it? I imagine it's a lot of work and from my understanding nobody uses OpenGL anyway (very very few people know about the secret switch at all).</p>
<p>If it's something usually done, do programmers usually create their own 3d engine "wrapper", something like SDL made in house, and based on switches / #defines / whatnot decide which API function to ultimately call (DirectX or OpenGL)? Or is this functionality already built in in sdl (you can switch between DirectX and OpenGL at will)?</p>
<p>And, finally, do you have any books to suggest?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1789380/how-can-i-find-which-directx-version-install-on-my-system-through-code0How can i find which DIrectX version install on my system through codeFiroz 2009-11-24T11:10:52Z2009-11-24T14:58:11Z
<p>How can i find the current install version of directx on my system using code(C#).</p>
http://stackoverflow.com/questions/1769568/d3d-performance-comparison-shaders-vs-built-in-shading1D3D Performance comparison, shaders vs built in shadingBurre2009-11-20T10:22:10Z2009-11-23T18:09:58Z
<p>Hi there.</p>
<p>I have a running 3D engine built in D3D (via SlimDX). To avoid interupting the rendering pipeline I have batched together many objects with the same material into bigger meshes (to reduce state switching). This have worked well and gives a good performance level for my need.</p>
<p>The issue I am running into is that I, during runtime, need to change material properties on some subsets of those larger batched meshes. I'm using the attribute buffer for that and it have been working reasonably well. I have been using a limited number of active attributes earlier (ca 5 per mesh), but now find the need to have much more variations on the materials (different shades of opacity/colorblends) and thus ending up with possibly hundred or more combinations. And since those changes happens during runtime I can't bundle them together before rendering starts. Sure I could re-construct meshes, but I rather not since it is slow and switching back and fourth between materials needs to be done at interactive speeds.</p>
<p>So my question is, what is the best route to take?</p>
<ul>
<li><p>Should i implement a more robust attribute handling system that dynamically masks faces with available attribute IDs on demand and then resets them when done? I have heard that fragmentation in the attribute buffer generates added performance hit and I am also unsure about the performance hit of subsequent DrawSubset() calls with material switches in between (i.e when is too much and when should i optimize my attribute arrays?). Anyone with any experience on this?</p></li>
<li><p>My other idea is to use a parametrized pixel shader. I don't need any fancy effects, just the bare minimum (current is the built in flat-shader with color only and transparency on some objects), so shader model 1 is more than enough for my needs. The idea here is to use one all-purpose shader and instead of switching material between calls just alter some shader parameters. But I don't know if this is faster than switching materials and/or if programmable shaders are slower than the build in ones (given the same result).</p></li>
</ul>
<p>I'm also curious about the difference in performance hit between switching mesh or drawing different subsets in one big mesh (given the same number of material switches for both cases).</p>
<p>I understand that these questions might differ some between GFX-cards and their respective performance/age but I'm just looking for general guidelines here on what to focus most effort on (i.e what type of state switches/CPU-interference that gives the biggest GPU-hit). Memory is a concern also, so any implementations that duplicates whole (or large parts) of meshes are not possible for me. </p>
<p>My focus is performance on older(5y)/less capable/integrated GFX cards and not necessarily top of the line gamer cards or work station cards (like Quadro). Which I guess could make or break the solution using shaders depending on how good the shader performance is on a particular board.</p>
<p>Any and all suggestions and feedback are greatly appreciated.</p>
<p>Many thanks in advance!</p>
http://stackoverflow.com/questions/1772415/directx-11-compute-shader-not-writing-all-values1DirectX 11 Compute Shader - not writing all valuesGluber2009-11-20T18:32:23Z2009-11-22T05:30:12Z
<p>I am trying some experiments in fractal rendering with DirectX11 Compute Shaders.
The provided example runs on a FeatureLevel_10 device.</p>
<p>My RwStructured output buffer has a data format of R32G32B32A32_FLOAT</p>
<p>The problem is that when writing to the buffer, it seems that only the ALPHA ( w ) value gets written nothing else....
Here is the shader code:</p>
<pre><code>
struct BufType
{
float4 value;
};
cbuffer ScreenConstants : register(b0)
{
float2 ScreenDimensions;
float2 Padding;
};
RWStructuredBuffer BufferOut : register(u0);
[numthreads(1, 1, 1)]
void Main( uint3 DTid : SV_DispatchThreadID )
{
uint index = DTid.y * ScreenDimensions.x + DTid.x;
<pre><code>float minRe = -2.0f;
float maxRe = 1.0f;
float minIm = -1.2;
float maxIm = minIm + ( maxRe - minRe ) * ScreenDimensions.y / ScreenDimensions.x;
float reFactor = (maxRe - minRe ) / (ScreenDimensions.x - 1.0f);
float imFactor = (maxIm - minIm ) / (ScreenDimensions.y - 1.0f);
float cim = maxIm - DTid.y * imFactor;
uint maxIterations = 30;
float cre = minRe + DTid.x * reFactor;
float zre = cre;
float zim = cim;
bool isInside = true;
uint iterationsRun = 0;
for( uint n = 0; n < maxIterations; ++n )
{
float zre2 = zre * zre;
float zim2 = zim * zim;
if ( zre2 + zim2 > 4.0f )
{
isInside = false;
iterationsRun = n;
}
zim = 2 * zre * zim + cim;
zre = zre2 - zim2 + cre;
}
if ( isInside )
{
BufferOut[index].value = float4(1.0f,0.0f,0.0f,1.0f);
}
</code></pre>
<p>}
</pre></code></p>
<p>The code actually produces in a sense the correct result ( 2D Mandelbrot set ) but it seems somehow only the alpha value is touched and nothing else is written, although the pixels inside the set should be colored red... ( the image is black & white ) </p>
<p>Anybody has a clue what's going on here ? </p>
http://stackoverflow.com/questions/124851/opengl-still-better-than-direct3d-for-non-games9OpenGL still better than Direct3D for non-games ?mgb2008-09-24T01:15:50Z2009-11-22T00:25:56Z
<p>The standard model has been that OpenGL is for professional apps (CAD) and Direct3D is for games. </p>
<p>With the debacle of openGL 3.0, is openGl still the natural choice for technical 3D apps (cad/GIS)?<br />
Are there scenegraph libraries for Direct3D? </p>
<p>(Of course Direct3D is windows only.)</p>
http://stackoverflow.com/questions/1775352/how-do-i-go-about-implementing-sprite-masking1How do I go about implementing sprite masking?meds2009-11-21T12:27:44Z2009-11-21T21:02:16Z
<p>Using DirectX I'm rendering textured polygons (orthographically) so they act as HUD sprites. Now I'm not sure how would I go about implementing sprite masking in this sytem?</p>
<p>So basically say I have a sprite, how can I make it render only in a given portion of the screen which I define? And if a part of it moves outside this portion of the screen you don't see it?</p>
http://stackoverflow.com/questions/1751179/managed-directx-running-from-net-framework-4-0-app-dont-hunt0Managed DirectX running from .Net Framework 4.0 app dont huntTurbo2009-11-17T19:26:57Z2009-11-20T16:43:18Z
<p>I work on a product that uses Managed DirectX for data visualizations. I was trying to upgrade this product to .net framework 4.0, but I think I'm having issues with Managed DirectX and .Net 4.0 playing together. </p>
<p>The main assembly does not reference managed directX. But when it tries to call into an assembly that does reference managed directX...everthing "halts". Its like the debugger just decided not to step into the assembly. I get no exception, nothing. And when I hit the pause button, the process is sitting on the call into the assembly that references Managed DirectX.</p>
<p>Is there a known compatibility issue with .Net 4.0 and Managed DirectX?</p>
http://stackoverflow.com/questions/1769837/good-directx-tutorials-online2Good DirectX tutorials online?RB582009-11-20T11:17:34Z2009-11-20T14:38:40Z
<p>I'm trying to make a bowling game simulation for college. Any ideas where to find a decent tutorial in DirectX9, using ode-0.9 and c++?</p>
http://stackoverflow.com/questions/1702600/is-it-possible-to-progressively-alpha-blend-between-two-textures-in-one-location0Is it possible to progressively alpha-blend between two textures in one location created with D3DXCreateTextureFromFileInMemoryEx?45012009-11-09T17:43:43Z2009-11-19T22:07:08Z
<p>I have two textures that are both .jpg, which represent a sky (one during the day, one at night). My question is, is it possible for me to fade one texture into the other? They are created with <code>D3DXCreateTextureFromFileInMemoryEx</code>. How can I perform this kind of transition? I don't wish to create two objects, just change the texture gradually.</p>
<p>To be clear, I wish to, over time, slowly blend from one texture to another (and back). However, I don't wish the fade to be going on at all times. Thanks in advance for any advice you can offer.</p>
http://stackoverflow.com/questions/1756709/game-programming-book-using-opengl-and-directx0Game programming book using OpenGL and DirectXChris2009-11-18T15:16:38Z2009-11-19T17:57:55Z
<p>What is in your opinion the best game programming book using OpenGL and DirectX?</p>
http://stackoverflow.com/questions/1762444/tracing-unmanaged-directx-objects-allocated-through-managed-directx0Tracing unmanaged DirectX objects allocated through Managed DirectXMatt Breckon2009-11-19T10:48:47Z2009-11-19T11:53:16Z
<p>I have a problem where Device.Dispose() is taking a long time to execute when the application is closed. I am investigating whether this is due to unmanaged objects not being freed properly thus resulting in a long cleanup time.</p>
<p>Is there an easy way of tracing or viewing the unmanaged DirectX objects that have been allocated?</p>
http://stackoverflow.com/questions/1761276/is-it-possible-to-use-a-pixel-shader-inside-a-sprite0Is it possible to use a pixel shader inside a sprite?Firoz 2009-11-19T06:29:04Z2009-11-19T06:55:23Z
<p>Dear all,</p>
<p>Is it possible to use a pixel shader inside a sprite?</p>
<p>I have create a simple pixel shader, that just writes red color, for
testing.
I have surrounded my Sprite.DrawImage(tex,...) call by the
effect.Begin(...), BeginPass(0), and EndPass(), End(),
but my shader seems not to be used : My texture is drawn just
normally.</p>
http://stackoverflow.com/questions/1743506/hooking-into-directx-application0Hooking into DirectX application x3ro2009-11-16T17:10:02Z2009-11-18T15:40:25Z
<p>Hey there :)
I'm currently trying to display some information (as an overlay) to the user inside a DirectX-based game, much like the frame count which Fraps displayed, but I have no clue where to start. I don't expect a full solution to my problem, just a few hints where I can start and where to get more information about the topic ;)</p>
<p>Thanks in advance.</p>
<p>PS: The project I'm working on is written in C# (.NET 3.5)</p>
<p>PPS: To clarify: I mean hooking into any random DX-based game. Start my app, start any game, display some kind of overlay.</p>
http://stackoverflow.com/questions/1743966/making-a-program-timer-based-rather-than-frame-rate-dependent0Making a program timer-based rather than frame-rate dependent?Mark2009-11-16T18:28:30Z2009-11-18T14:45:18Z
<p>I have a game engine to work on as part of a class. Currently, its rendering is frame-rate dependent and one requirement is to move to a timer-based dependency. I am not sure how to determine where it is relying on frame-rates. I'm not sure what to look for. I realize I'm going to need to somehow incorporate a timer (GetTickCount?) to accomplish this, but I'm not sure how frequent to update that, either. </p>
<p>I'm not looking to be handed code, just some helpful guidelines possibly? </p>
http://stackoverflow.com/questions/1141135/opengl-v-directx-the-endless-war6OpenGL V DirectX (the endless war)Auraomega2009-07-17T01:52:56Z2009-11-18T09:23:16Z
<p>Hi there,</p>
<p>I'm trying to work out whether to learn DirectX or to continue on with OpenGL...</p>
<p>I dev mainly games, and I know enough of OGL to get by, nothing more. I know that DirectX and D3D are popular amongst professional games developers, is there any reason behind this?</p>
<p>Which API is easier to learn and use? Is there any difference in quality (in a gaming world for example).</p>
<p>I like to use Linux as well as Windoze, and like to make cross platform apps, so OGL seems a sensible choice, however I'm trying to get into professional games developing and I'm wondering if I would stand a better chance with DirextX and D3D under my belt, I also only really run Linux on my laptop, which is for work and not for play, my PC is a gaming powerhouse ;)</p>
<p>If I continued learning OGL would it be relatively easy to learn D3D and DX, or would it be like learning all over again? If I learned DX to a high level, would it be easier to get along with OGL? Is the theory interchangable between the languages or is there significant differences?</p>
<p>Basically, I'm at a loss as to which API to use, I'm working on my first full featured 3D demo game, I'm going to need to learn a fair bit of OGL to get it up and running how I want, so if using DX and D3D is better now would be the best time to make the switch in my opinion.</p>
<p>What I've read on the net is overwhelming, so many different opinions, lots of outdated information, so I want to ask now where I know its going to be relevent to what I want, and when I want.</p>
<p>So, taking that all into consideration, which would be the best API for ME to learn and dev with?</p>
http://stackoverflow.com/questions/1754588/can-i-get-directxany-version-to-callback-when-logging-an-error1Can I get DirectX(any version) to callback when logging an error?Sorlaize2009-11-18T08:57:27Z2009-11-18T09:19:10Z
<p>I have output like this after choosing debug version in the directx cpl:</p>
<pre><code>Direct3D9: (WARN) :Ignoring redundant SetTextureStageState. Stage: 0, State: 3
Direct3D9: (ERROR) :Memory Address: 008307ec lAllocID=1 dwSize=00004bc4, ReturnAddr=7248d5ea (pid=000017d4)
</code></pre>
<p>Is it possible to define a callback which is triggered when these notifications are added to the console, like with keyboard/mouse input? I want to be able to do more based on the information.</p>
http://stackoverflow.com/questions/1734993/prerequisite-for-learning-directx1Prerequisite for learning directxSigncodeindie2009-11-14T17:45:13Z2009-11-16T13:34:48Z
<p>Hi All,</p>
<p>I am from .net C# background and I want to learn DirectX. I have knowledge of C++ but I am fairly new to graphic world.</p>
<p>I am little confused about how to start learning directx, should I start learning direct directly or buy a basic graphic book like hern and baker and then jump to directx.</p>
<p>Which is the recommended book for learning basic graphic concepts, is it hern and baker? Is there any directx book which will cover graphic concepts as well?</p>
<p>I think that keeping a basic graphics book is allways good, because i can use it as reference anytime</p>
<p>Any suggestions from experts here?</p>
http://stackoverflow.com/questions/1741600/shader-files-for-hue-saturation-brightness-1Shader files for hue\saturation\brightnessFiroz 2009-11-16T11:28:06Z2009-11-16T11:28:06Z
<p>I am new to write a shader files(.fx), how can i write shader file to set hue\brigtness\contrast.</p>
http://stackoverflow.com/questions/1218329/adding-windows-form-to-a-directx-application1Adding Windows Form to a DirectX application?meds2009-08-02T07:12:36Z2009-11-15T07:03:01Z
<p>I'm working on a directx application and was wondering how I could add a regular window to the application, one which has text boxes, command buttons and all.</p>
http://stackoverflow.com/questions/756044/take-screenshot-of-any-external-application-using-c0Take screenshot of any external application using C#Erich Mirabal2009-04-16T13:12:23Z2009-11-13T22:12:15Z
<p>We have a C# (WPF) application in which we want to take a screenshot of an arbitrary application launched by us (i.e. so we have a reference to the Process we started).
The application may be minimized or behind other windows but we still only want the image of the individual application, not overlapping pixels. </p>
<p>I know the typical P/Invoke solutions using BitBlt or <a href="http://delphi.about.com/od/delphitips2008/qt/print%5Fwindow.htm" rel="nofollow">PrintWindow</a> work most of the time, but those fail (I only get black/transparent pixels) when dealing with an DirectX or OpenGL application that draws directly to the graphics device. I have found this <a href="http://spazzarama.wordpress.com/2009/02/07/screencapture-with-direct3d/" rel="nofollow">article</a> on taking a screenshot of a Direct3D app from C#, so I think I have that case covered.</p>
<p>So my question is this:</p>
<ol>
<li>How would I do this for an OpenGL application?</li>
<li>What is the easiest way to determine the appropriate method to use (PW/DX/GL)?</li>
<li>Is there a single universal way of doing this?</li>
</ol>
<p>For #2, am I relegated to inspecting the modules loaded by the executable and seeing if an DirectX or OpenGL DLL/Assembly is loaded?</p>
<p>This only has to run on Windows XP (not cross-platform and not going to Vista/7 anytime soon if ever for this application).</p>
http://stackoverflow.com/questions/1724130/directx-9-terrain-engine-problem-c2DirectX 9 Terrain Engine Problem C++Brammie2009-11-12T17:53:06Z2009-11-12T19:36:28Z
<p>Hello,</p>
<p>I'm Having a problem with my DirectX 9 Terrain Engine.. It's working fine, except for one thing, it doesn't load the heightmap in a proper way.
You can see a screenshot of the problem here: <img src="http://img682.imageshack.us/img682/240/problemc.png" alt="alt text">
as you can see there is a diagonal crack through the entire map.. one side should be mirrored to render the map properly.</p>
<p>I'm almost sure the problem is not inside the file, as other programs don't seem to have a problem with it.</p>
<p>I'm loading my heightmap in this way (class header first):</p>
<pre><code>class Terrain
{
public:
Terrain(const char* fileName);
~Terrain();
void Update(int x, int y);
void Render(LPDIRECT3DDEVICE9 Device);
private:
float* Data;
int Width;
int TileWidth;
bool isRendering;
bool isSwapping;
std::vector<Chunk*> RenderChunks;
};
</code></pre>
<p>and the constructor:</p>
<pre><code>Terrain::Terrain(const char* fileName)
{
std::fstream File(fileName, std::ios::in | std::ios::binary);
File.seekg(0, std::ios::end);
int Length = File.tellg();
File.seekg(0, std::ios::beg);
int w = (int)sqrt((float)Length/4.0)-1;
Data = new float[Length / 4];
File.read((char*)Data, Length);
File.close();
Width = w;
int dataWidth = w+1;
TileWidth = w/16;
for (int y=0; y<TileWidth; y++)
{
for (int x=0; x<TileWidth; x++)
{
Chunk* c = new Chunk(x*16, y*16, 16, 512, Data);
RenderChunks.push_back(c);
}
}
}
</code></pre>
<p>Whenever I'm calling a height on the heightmap, i use it like this: Data[x + y*dataWidth] (just the usual way)
the Chunk class is a class that just renders a part of the heightmap, just so the detail decreases as the distance to the camera increaes.</p>
<p>So my question is: what could cause my problem?</p>
<p>EDIT: Rendering code:</p>
<pre><code>void Terrain::Render(LPDIRECT3DDEVICE9 Device)
{
for (unsigned int i=0; i<RenderChunks.size(); ++i)
{
RenderChunks[i]->Render(Device);
}
}
Chunk::Chunk(int cX, int cY, int cW, int dW, float* Data):
Pos(cX, 0, cY)
{
Heights = new float[(cW + 1) * (cW + 1)];
ParentH = Data;
ParentOffset = cX + cY*dW;
ParentW = dW;
Width = cW + 1;
for (int y=0; y<Width; ++y)
{
memcpy(Heights + y*Width, Data + cX + (y+cY)*dW, sizeof(float)*Width);
}
Vertices = NULL;
Calculate(16, 16, 16, 16, 16);
}
void Chunk::Calculate(int L, int lod_L, int lod_R, int lod_U, int lod_D)
{
Detail = L;
if (Vertices) delete[] Vertices;
Vertices = new Vertex[(Width-1)*(Width-1)*6/(L*L)];
Count = (Width-1)*(Width-1)*2/(L*L);
float Height = 100.0f;
for (int y=0; y<Width-1; y += L)
{
for (int x=0; x<Width-1; x += L)
{
Vertex* thisQuad = Vertices + (y/L)*((Width-1)/L)*6 + (x/L)*6;
float heights[4] = {
Heights[(x ) + (y )*Width] * Height,
Heights[(x ) + (y + L)*Width] * Height,
Heights[(x + L) + (y )*Width] * Height,
Heights[(x + L) + (y + L)*Width] * Height};
float bonus[8] = {
heights[0],
heights[2],
heights[0],
heights[2],
heights[1],
heights[3],
heights[1],
heights[3]};
if (Pos.z + y > 0)
{
bonus[0] = ParentH[((int)Pos.x + x ) + ((int)Pos.z + y - L)*ParentW] * Height;
bonus[1] = ParentH[((int)Pos.x + x + L) + ((int)Pos.z + y - L)*ParentW] * Height;
}
if (Pos.x + x > 0)
{
bonus[2] = ParentH[((int)Pos.x + x - L) + ((int)Pos.z + y )*ParentW] * Height;
bonus[4] = ParentH[((int)Pos.x + x - L) + ((int)Pos.z + y + L)*ParentW] * Height;
}
if (Pos.x + x < ParentW-L-L)
{
bonus[3] = ParentH[((int)Pos.x + x+L+L) + ((int)Pos.z + y )*ParentW] * Height;
bonus[5] = ParentH[((int)Pos.x + x+L+L) + ((int)Pos.z + y + L)*ParentW] * Height;
}
if (Pos.z + y < ParentW-L-L)
{
bonus[6] = ParentH[((int)Pos.x + x ) + ((int)Pos.z + y+L+L)*ParentW] * Height;
bonus[7] = ParentH[((int)Pos.x + x + L) + ((int)Pos.z + y+L+L)*ParentW] * Height;
}
if (x == 0 && lod_L>L)
{
heights[0] = lerp(
Heights[(x ) + (((y )/lod_L)*lod_L )*Width],
Heights[(x ) + (((y )/lod_L)*lod_L + lod_L)*Width],
(float)((y ) % lod_L) / (float)lod_L) * Height;
heights[1] = lerp(
Heights[(x ) + (((y + L)/lod_L)*lod_L )*Width],
Heights[(x ) + (((y + L)/lod_L)*lod_L + lod_L)*Width],
(float)((y+L) % lod_L) / (float)lod_L) * Height;
}
if (x >= Width-2 && lod_R>L)
{
heights[2] = lerp(
Heights[(x + L) + (((y )/lod_R)*lod_R )*Width],
Heights[(x + L) + (((y )/lod_R)*lod_R + lod_R)*Width],
(float)((y ) % lod_R) / (float)lod_R) * Height;
heights[3] = lerp(
Heights[(x + L) + (((y + L)/lod_R)*lod_R )*Width],
Heights[(x + L) + (((y + L)/lod_R)*lod_R + lod_R)*Width],
(float)((y+L) % lod_R) / (float)lod_R) * Height;
}//*/
if (y == 0 && lod_U>L)
{
heights[0] = lerp(
Heights[(((x )/lod_U)*lod_U ) + (y )*Width],
Heights[(((x )/lod_U)*lod_U + lod_U) + (y )*Width],
(float)((x ) % lod_U) / (float)lod_U) * Height;
heights[2] = lerp(
Heights[(((x + L)/lod_U)*lod_U ) + (y )*Width],
Heights[(((x + L)/lod_U)*lod_U + lod_U) + (y )*Width],
(float)((x+L) % lod_U) / (float)lod_U) * Height;
}
if (y >= Width-2 && lod_D>L)
{
heights[1] = lerp(
Heights[(((x )/lod_D)*lod_D ) + (y + L)*Width],
Heights[(((x )/lod_D)*lod_D + lod_D) + (y + L)*Width],
(float)((x ) % lod_D) / (float)lod_D) * Height;
heights[3] = lerp(
Heights[(((x + L)/lod_D)*lod_D ) + (y + L)*Width],
Heights[(((x + L)/lod_D)*lod_D + lod_D) + (y + L)*Width],
(float)((x+L) % lod_D) / (float)lod_D) * Height;
}//*/
D3DXVECTOR3 fake(0,0,0);
Vertex p1(D3DXVECTOR3(x, heights[0], y ) + Pos, CalcNormal(bonus[2], heights[2], bonus[0], heights[1]));
Vertex p2(D3DXVECTOR3(x, heights[1], y + L) + Pos, CalcNormal(bonus[4], heights[3], heights[0], bonus[6]));
Vertex p3(D3DXVECTOR3(x + L, heights[2], y ) + Pos, CalcNormal(heights[0], bonus[3], bonus[1], heights[3]));
Vertex p4(D3DXVECTOR3(x + L, heights[3], y + L) + Pos, CalcNormal(heights[1], bonus[5], heights[2], bonus[7]));
thisQuad[0] = p1;
thisQuad[1] = p2;
thisQuad[2] = p3;
thisQuad[3] = p3;
thisQuad[4] = p2;
thisQuad[5] = p4;
}
}
}
void Chunk::Render(LPDIRECT3DDEVICE9 Device)
{
Device->SetFVF(D3DFVF_XYZ | D3DFVF_NORMAL);
Device->DrawPrimitiveUP(
D3DPT_TRIANGLELIST,
Count,
Vertices,
sizeof(Vertex));
}
</code></pre>
http://stackoverflow.com/questions/1717780/how-to-programatically-disable-the-auto-focus-of-a-webcam2How to programatically disable the auto-focus of a webcam.jslap2009-11-11T20:16:08Z2009-11-11T20:56:24Z
<p>I am trying to do computer vision using a webcam (the model is Hercules Dualpix). I know it is not the ideal camera to use, but I have no choice here. The probleme is the auto-focus makes it hard/impossible to calibrate the camera. Anyone knows a way to disable the auto-focus feature. Or, if someone has an idea to deal with it and calibrate the camera with the auto-focus.</p>
<p>Thanks. </p>