|
Some recent topics started on our forums |
Shader management with lights
|
Hi,
I'm rather new with shaders (I've just managed to get my first shader to compile and work in a game). I however have a neat abstracted library under my belt that for now works with the good old fixed function pipeline.
The library abstracts... |
Posted December 10, 2010 7:00:19 AM
|
Replies time out
|
Seems there's a problem, people can post new threads but not reply to existing ones. The message is:
Microsoft OLE DB Provider for SQL Server error '80004005'
Timeout expired
/community/forums/lib/forumlib.asp, line 482
Tested wit... |
Posted January 8, 2010 1:57:48 AM
|
Custom Installer, Behaviour on Vista
|
Just for the heck of it I wrote a custom installer following several MS guidelines. The installer is supposed to work from naked Win95 up to the latest Windows. This means for me to keep dependencies as low as possible.
So far everything works nic... |
Posted October 4, 2009 1:54:21 AM
|
Managed C++, Import in C# sees too many symbols
|
Hi,
I've built a managed C++ wrapper around a C++ code base to have access from C#. This works very nice so far.
The c++ wrapper is built with VS 2003 (i'd prefer to stay it that way), the C# project is built with VS 2008 C# Express.
Everyth... |
Posted April 5, 2009 2:10:22 AM
|
Joe Gunn (C64)
|
You are Joseph J. Gunn. Archeologist by passion. By chance you stumbled upon an unknown pyramid in the desert of Egypt. You suspect it to be the long lost tomb of the Crocodile King. The king whose name has been erased from history as if nobody shoul... |
Posted January 25, 2009 12:33:11 AM
|
MFC to .NET, interfacing with C++ classes
|
Hi,
Over the years i've built several editors (a paint app, MDI), 3d editor (SDI), etc. All of them are based on MFC. I've directly included my codebase files in C++.
Now i've grown fond of C#. It's awesome to work with. Logically i'd lik... |
Posted January 16, 2009 12:09:58 PM
|
Flash ad with sound
|
Hi,
i understand that you get at least part of your revenue from the banner ads, but could you please only use ones without sound. I would like to refrain from blocking flash.
The particular one i'm talking about is the vertical... |
Posted January 9, 2009 1:13:02 AM
|
Flash Ad with sound
|
Just today i happened onto a flash ad with sound.
I understand that you get ad revenue but could you please cut the ones with sound out? It's really obnoxious having a sound every time i go back to the forum overview (where i happened to... |
Posted October 18, 2008 11:06:30 AM
|
The 2008 Retro Remakes Big Competition
|
The 2008 Retro Remakes Big Competition Posted by: Georg Rottensteiner at September 2, 2008 4:40:00 PMThe 2008 Retro Remakes Big Competition is on!
Head over to http://www.retroremakes.com and get going!
There’s six categories for you... |
Posted September 2, 2008 10:40:00 AM
|
Ascii/Unicode code, duplication avoidable?
|
Hi,
Once upon a time when Unicode was no big thing i built a codebase which consisted of pure ansii/ascii functions. During a project i noticed i needed to work with Unicode so i created typedefs (utilizing the Windows define UNICODE) and changed... |
Posted July 17, 2008 1:02:10 PM
|
View All Topics Started By This User
|
|
Some recent replies made on our forums |
Problem with Direct3D triangle drawing
|
You're using D3DFVF_XYZRHW, this means pretransformed vertices. Primitives drawn with this vertex declaration are not put through the transformation pipeline anymore (hence pretransformed). If you want to have a 3d effect (as it sounds) you need to u... |
Posted January 5, 2011 1:01:08 AM
|
Should I create a new project?
|
In that case you probably have a bigger rewrite ahead.
It would probably be possible to hack MFC to allow for full screen (once you're outside of MFCs planned path you're fighting MFC more than anything) but I'd advise against it.
Most of your... |
Posted January 4, 2011 1:01:56 PM
|
Should I create a new project?
|
What does publish mean in your case?
What format does the level reside in? Don't you have a few binary or text files where the level data is kept?
Is there a target appplication where you want to load the level in?
Or is the editor the target ap... |
Posted January 4, 2011 4:18:35 AM
|
Delete all objects in std::vector
|
If you delete ALL objects of the vector you might want to not erase every single object but do a clear after you deleted them:
std::vector<Object*>::iterator it( children.begin() );
while ( it != children.end() )
{
delete *it;
++it... |
Posted December 29, 2010 2:12:35 AM
|
need help with directx
|
You also need to add d3dx9.lib (note the x) to your project.
Hint: MSDN is awesome. If you encounter a missing external like this, look the offending identifier up in MSDN. At the bottom of the page the required header and library are listed under... |
Posted December 28, 2010 12:36:11 AM
|
2D wheel position
|
The other way would be to simply find the angle of the ball position to the wheel center and divide by ( 360 / 37 ). Or depending on your trigonometry functions ( 2 * PI ) / 37. |
Posted December 26, 2010 1:46:32 AM
|
Did anyone else do this when they first started coding?
|
I did the same as owl. Basically a three line ASCII box with the name of the method in the top line. Back then I used the Watcom compiler with an IDE which name I've forgotten. The IDE hat a switch that condensed the display and showed all the first... |
Posted December 22, 2010 2:52:25 AM
|
Context Menu using TrackPopupMenuEx
|
You can't just cast anything to HMENU. If you have a menu resource you have to use LoadMenu to get its HMENU handle.
LoadMenu |
Posted December 18, 2010 6:44:24 AM
|
Where's the christmas theme?
|
Hush! Maybe my eyes'll live through this christmas without bleeding. |
Posted December 15, 2010 1:58:57 AM
|
Is there any easy way to enable or disable a service by name
|
It's surprisingly simple really.
Use OpenService (or CreateService) to retrieve a handle to a service. Now call StartService or StopService. Note that the name you pass in is not the description provided by the services applet but a textual name.
... |
Posted December 15, 2010 1:48:49 AM
|
View All Replies Made By This User
|