|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
hey guys, i was just wondering if someone could tell me how to add grahpics i will be adding to a game, or you could tell me which C++ tutorials a about game design or just adding grahics. And i use Bloodshed compilers, so could you still make 2d side scrollers with that or is that just for other things.
and what type of graphics designer do you reccomend? i could use one with sound making things and other useful things. thnks! |
|
#2
|
||||
|
||||
|
Try Googling "c++ sprite engine". Good Luck =D
__________________
"Java makes impossible things possible, but makes easy things difficult." - Somebody
|
|
#3
|
|||
|
|||
|
Quote:
thanks, would i be better off using the engine or just using a compiler? And when you use the negine do you still use the compiler? and on those engines could i import sprites from for example this site |
|
#4
|
||||
|
||||
|
An engine is just a or a set of libraries to assist in a certain task. They still need to be compiled. Like my physics engine does all movement calculations as well as collision detection and response to make objects appear to act like they would in real life.
__________________
There are none so blind as those who will not see. — Jonathan Swift My 2D Physics Engine. My Remake of UQM. Both are written in C#. |
|
#5
|
|||
|
|||
|
oh , so you dont NEED an engine. you can just use your C++ compiler?
|
|
#6
|
||||
|
||||
|
Yes. A compiler takes all that text you type in, and in the case of c++, (I believe) turns it into low-level machine code.
|
|
#7
|
||||
|
||||
|
Quote:
No but they can make life easier. What you will need is some kind of library that does load images and displays them. That is unless you want to write your own code to load complex images and write your own drivers for your display. If you enjoy pain and frustration you could try to do that. Or you could use something like SDL. |
|
#8
|
|||
|
|||
|
what about those 3d editors, i think there called scene editors or there just called 3d editors
But what types of engines support for example this sites game editor: http://www.theliquidateher.com/gamedesign.html |
|
#9
|
|||
|
|||
|
> And i use Bloodshed compilers, so could you still make 2d side scrollers with that or is that just for other things.
Bloodshed Dev-C++ is an IDE. It is a nice and pretty environment to type up your code. It is not a compiler itself. Dev-C++ uses MinGW for a compiler. MinGW is the windows version of the gcc compiler. Yes you can make 2d side scrollers with that, because you can make 2d side scrollers with C++. > thanks, would i be better off using the engine or just using a compiler? > oh , so you dont NEED an engine. you can just use your C++ compiler? You want graphics. You want a game. Fine. But there has to be a code to do all of that. Where does it come from? Either you type it up yourself. Or someone writes a bunch of code beforehand, that handles graphics, the game logic, and so on. The logic and handling code is called an engine. It's still code, so you still need your compiler. > what about those 3d editors, i think there called scene editors or there just called 3d editors Depends on what their exact purpose is. But in general, the term is "3D modeller". > But what types of engines support for example this sites game editor: Actually, it is an engine itself. It comes with a modeller, but if you want a real modeller, you should use a dedicated program like Maya, Max, Blender, Wings 3D, etc.. |
|
#10
|
|||
|
|||
|
oh, ok thanks for that! But i would just like to know how to add graphics into the game, just using the compiler, no engine
|
|
#11
|
||||
|
||||
|
Read post #7. Basically, with your level of understanding, you DON'T!
|
|
#12
|
|||
|
|||
|
> But i would just like to know how to add graphics into the game, just using the compiler, no engine
You write your own code to do so. Depending on the level of graphics, and any other constraints, you have to work with various 3rd party APIs. For example, 3D graphics is done with either OpenGL or Direct3D. You learn the APIs for them (to learn the API, you need to know C++). Or perhaps on Windows, for basic graphics you can just use GDI+. Or SDL + OpenGL, if you want cross platform compatibility. You might include various helper libraries, like DevIL, freetype, etc.. And using all those libraries, you write your own code to include graphics into the game. |
|
#13
|
|||
|
|||
|
oh ok, thanks guys
|
![]() |
| Viewing: Dev Shed Forums > Programming Languages > Game Development > Help adding grahics |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|