The MASM Forum

General => The Workshop => Topic started by: BlueMR2 on August 28, 2014, 10:53:47 PM

Title: Moving my graphics stuff to Win32...
Post by: BlueMR2 on August 28, 2014, 10:53:47 PM
I made the move from DOS to Win32 awhile back for my small utility programs.  Now looking to do so for my graphics stuff.  What's the best source of information for getting started on doing graphics in a Win32 environment from assembly?  I presume there are GDI calls for the basics and DirectX for gaming, but am unsure of where to start with them.

Thanks!
Title: Re: Moving my graphics stuff to Win32...
Post by: GoneFishing on August 29, 2014, 12:27:20 AM
OpenGL is another option .
Old forum had dedicated board  (http://www.masmforum.com/board/index.php?PHPSESSID=b67964626192e786c8172faf04b3425d&board=41.0) .
Look here (http://www.masmforum.com/board/index.php?topic=17222.0) for the whole set of examples .
The old versions of DirectX SDK (2007,2010) have documentation, tutorials, samples,sample browser and  tools . I don't know whether they're available for downloading from the MS site or not but  still they can be found somewhere on the internet .
And as usual - online MSDN and  Windows SDK multimedia samples can be very helpful too .
Title: Re: Moving my graphics stuff to Win32...
Post by: Gunther on August 29, 2014, 02:07:27 AM
Hi vertograd,

Quote from: vertograd on August 29, 2014, 12:27:20 AM
OpenGL is another option .
Old forum had dedicated board  (http://www.masmforum.com/board/index.php?PHPSESSID=b67964626192e786c8172faf04b3425d&board=41.0) .
Look here (http://www.masmforum.com/board/index.php?topic=17222.0) for the whole set of examples .
The old versions of DirectX SDK (2007,2010) has documentation, tutorials, samples,sample browser and  tools . I don't know whether they're available for downloading from the MS site or not but  still they can be found somewhere on the internet .
And as usual - online MSDN and  Windows SDK multimedia samples can be very helpful too .

Thank you for that valuable information.  :t I forgot it.

Gunther
Title: Re: Moving my graphics stuff to Win32...
Post by: dedndave on August 29, 2014, 03:09:41 AM
there is much to learn, here - and thousands of examples
start with basic GDI - that is plenty to keep your head busy for a while

http://msdn.microsoft.com/en-us/library/windows/desktop/dd162759%28v=vs.85%29.aspx (http://msdn.microsoft.com/en-us/library/windows/desktop/dd162759%28v=vs.85%29.aspx)
Title: Re: Moving my graphics stuff to Win32...
Post by: Zen on August 29, 2014, 04:03:50 AM
BLUEMR2,
Quote from: BLUEMR2What's the best source of information for getting started on doing graphics in a Win32 environment from assembly?
As far as official publications go, there's absolutely nothing. There are alot of graphics examples here at the MASM Forum, though.
Search the Forum Links, Browse The Old UK Forum.
DirectX, because its all COM is typically done in C++ Visual Studio (just for convenience). There are many worthy publications on DirectX programming,...but, translating COM interface methods to assembly language is a major pain in the ass.
GDI functions can be invoked just like any other Windows API, so this is not difficult.   

Here are some interesting graphics websites:
Real-Time Rendering Resources (http://www.realtimerendering.com/index.html)
The Books Online section is valuable: Real-Time Rendering, Books Online (http://www.realtimerendering.com/index.html#books)
Real-Time Rendering page devoted to sites and tools used by authors on a continuing basis: Real-Time Rendering, Portal (http://www.realtimerendering.com/portal.html)
NVIDIA Developer Zone (https://developer.nvidia.com/)
AMD Developer Central (http://developer.amd.com/)

There are some great graphics programming blogs out there:
Tom Forsyth's Tech Blog (http://home.comcast.net/~tom_forsyth/blog.wiki.html)
Diary of a Graphics Programmer, Wolfgang Engel (http://diaryofagraphicsprogrammer.blogspot.com/)

...And, here is a PDF version of one of Wolfgang Engel's Books: ShaderX2: Shader Programming Tips & Tricks with DirectX 9 (http://tog.acm.org/resources/shaderx/Tips_and_Tricks_with_DirectX_9.pdf)
...Here is a draft version of the book: The Direct3D Graphics Pipeline, by Richard Thomson (http://user.xmission.com/~legalize/book/download/index.html)

Advanced graphics information:
Graphics Gems Repository (http://tog.acm.org/resources/GraphicsGems/)
Tim Rowley, Graphics Papers, SIGGRAPH 2000-2006, and ACM Archives (http://trowley.org/)
Jonathan Shewchuk, Technical Papers, Computer Science, UC Berkeley (http://www.cs.cmu.edu/~jrs/jrspapers.html)

And, probably the best all-around website for assembly programmers is EDGAR's site: Donkey's Stable (http://www.donkeysstable.com/)
...And, of particular interest (for GDI programming) is: EDGAR's Graphics Lib (http://www.donkeysstable.com/files/Graphics.zip)
Title: Re: Moving my graphics stuff to Win32...
Post by: K_F on August 29, 2014, 06:52:16 AM
The latest with GDI is GDIPlus (GDI+), which is COM based, and there's also Direct2D

With XP and lower I'd look at GDI+ and previous versions, but with Win7+, Direct 2D is the way.
These are 2D based things, and if you're looking at games and 3D... DirectX, OpenGL.. would be the way.

I'm busy re-inventing the GDI+ INC files, with commentary, firstly for my own proj, then for y'all   :biggrin:
This is the start, not finished 
Title: Re: Moving my graphics stuff to Win32...
Post by: qWord on August 29, 2014, 07:16:04 AM
Quote from: K_F on August 29, 2014, 06:52:16 AMbut with Win7+, Direct 2D is the way.
fully agree.

I'v uploaded a MASM32 compatible header translation for Direct2D, WIC and DWrite here (http://masm32.com/board/index.php?topic=3015.msg31568#msg31568).
Title: Re: Moving my graphics stuff to Win32...
Post by: jj2007 on August 29, 2014, 12:13:42 PM
Quote from: K_F on August 29, 2014, 06:52:16 AM
The latest with GDI is GDIPlus (GDI+), which is COM based

Sure? (http://msdn.microsoft.com/en-us/library/ms533969%28v=vs.85%29.aspx)
Title: Re: Moving my graphics stuff to Win32...
Post by: BlueMR2 on August 29, 2014, 09:53:39 PM
Great info!  I'm looking forward to digging into it deeper!

My Windows 7 box was acting up last night (and I didn't have tons of time to begin with) so I didn't get started yet.  Spent all my time trying to download and install git...  Somehow Windows forgot how to move and open files...  Maybe it'll remember how tonight!
Title: Re: Moving my graphics stuff to Win32...
Post by: K_F on August 30, 2014, 03:46:14 AM
Quote from: jj2007 on August 29, 2014, 12:13:42 PM
Quote from: K_F on August 29, 2014, 06:52:16 AM
The latest with GDI is GDIPlus (GDI+), which is COM based

Sure? (http://msdn.microsoft.com/en-us/library/ms533969%28v=vs.85%29.aspx)
I was repeating what I read from the MSDN somewhere... although the prototyping INC files look different.
I'll stand corrected  :biggrin:
Title: Re: Moving my graphics stuff to Win32...
Post by: dedndave on August 31, 2014, 09:16:30 PM
i bet the GDIP flat functions are wrappers for the COM GDIP
Title: Re: Moving my graphics stuff to Win32...
Post by: Tedd on August 31, 2014, 10:19:13 PM
From http://msdn.microsoft.com/en-us/library/ms533798%28v=vs.85%29.aspx (http://msdn.microsoft.com/en-us/library/ms533798%28v=vs.85%29.aspx):
QuoteWindows GDI+ is a class-based API for C/C++ programmers.

There isn't any COM (as far as I can see), but there are C++ classes.
However, the method calls on objects are mostly wrappers for the 'flat' functions.