Programming graphics and sound on PC - Total newbie questions, and lots of them!

Posted by Russel on Stack Overflow See other posts from Stack Overflow or by Russel
Published on 2010-06-09T05:11:04Z Indexed on 2010/06/09 5:12 UTC
Read the original article Hit count: 303

Filed under:
|
|

Hello,

This isn't exactly specifically a programming question (or is it?) but I was wondering:

How are graphics and sound processed from code and output by the PC?

My guess for graphics:

  1. There is some reserved memory space somewhere that holds exactly enough room for a frame of graphics output for your monitor. IE: 800 x 600, 24 bit color mode == 800x600x3 = ~1.4MB memory space

  2. Between each refresh, the program writes video data to this space. This action is completed before the monitor refresh. Assume a simple 2D game: the graphics data is stored in machine code as many bytes representing color values. Depending on what the program(s) being run instruct the PC, the processor reads the appropriate data and writes it to the memory space.

  3. When it is time for the monitor to refresh, it reads from each memory space byte-for-byte and activates hardware depending on those values for each color element of each pixel.

All of this of course happens crazy-fast, and repeats x times a second, x being the monitor's refresh rate. I've simplified my own likely-incorrect explanation by avoiding talk of double buffering, etc

Here are my questions:

a) How close is the above guess (the three steps)?

b) How could one incorporate graphics in pure C++ code? I assume the practical thing that everyone does is use a graphics library (SDL, OpenGL, etc), but, for example, how do these libraries accomplish what they do? Would manual inclusion of graphics in pure C++ code (say, a 2D spite) involve creating a two-dimensional array of bit values (or three dimensional to include multiple RGB values per pixel)? Is this how it would be done waaay back in the day?

c) Also, continuing from above, do libraries such as SDL etc that use bitmaps actual just build the bitmap/etc files into machine code of the executable and use them as though they were build in the same matter mentioned in question b above?

d) In my hypothetical step 3 above, is there any registers involved? Like, could you write some byte value to some register to output a single color of one byte on the screen? Or is it purely dedicated memory space (=RAM) + hardware interaction?

e) Finally, how is all of this done for sound? (I have no idea :) )

© Stack Overflow or respective owner

Related posts about graphics

Related posts about sound