i am watching all the dx11 tutorials right now but i am kind of lost and i think thats because of some big lack of programming knowledge. I have a ton of questions while watching the videos and the only way to answer them is to get to know more of c++ i think.
Do you know some tutorials that point in the right direction (programming dx11 in vvvv) so that i can start with that and not go into the false direction?
@antokhio i really missed that one because of the title raymarch i think. this is awesome!
@tekcor thats the thing right now for me. if i want to add some opportunaties in some nodes like adding a different color to each vertex while using the right rasterized and blend modes i am completely lost.
but i think the raymarch, plus some beginner c++ tutorials will help a lot.
Well.
DX11 Wrapper by vux is written in C#, but when you talk about “nodes” you’re probably referring to the shader implementation on the vvvv side which is HLSL.
So forget about C++ for now :)
you can do pretty cool stuff already readily available nodes in what DX11 can offer in vvvv. You only need to write plugin nodes for very special cases (like binding multiple read/write resources to a shader or implementing a middleware). Mostly you’ll have to write HLSL code which is really simple stuff to do if you know your math/calculus. If you don’t know your math/calculus start with that first on sites like coursera or other active learning sites like that. After the first couple of lessons you only need to familiarise yourself with the “C like syntax”. HLSL is a good starting point on that because it has almost no syntactical decorations and there’s only a single level of intrinsic functions which are all listed and well documented on MSDN. There are also lot of resources on this very website to start from.
For DX11 vvvv plugins there are 5 layers you need to get into: C# or any other .NET language and their ecosystem, vvvv plugin interfaces, node patterns for vux’s DX11 implementation, because vvvv is using the SlimDX abstraction layer for DirectX for .NET that and finally very basic understanding of the Direct3D 11 C API. These can sound intimidating but they individually take one or 2 afternoons to get a hold of them. It’s recommended to write your plugins in C# but if you want to integrate middleware libraries which was intended to be used in C++ you can write plugins in C++/CLI too. Advantage of that is that you can directly work with Direct3D 11 API without any abstraction layer and just instantiate SlimDX and FeralTic wrappers based on resource pointers of the end result.
Have fun! ;)
thanks a lot for the advice!
for my understanding that sounds like a lot of work to dive in ;)
but there seems to be no real shortcut than learning from scratch.