Hi everyone.
I've been browsing your forums for a week or too, looking for information about RPG games.
I'm very new to the whole C++ thing, but feel like im getting a hang of it. As a part of my examn project this year, i've decided to program a simple 2D-Rpg game (if possible!). Let me just tell your about my basic idea, then ill get to the questions.
The game:
I would like to make a very simple 2D inviroment, where the player will be controlling a character. I will then implement a few tasks and quests along the way, where the player must conquer some monsters and/or pick up various items. Im hoping it will be possible to make a field/area on the screen where the actual gaming will take place.
Here are my questions:
1. I've read that its possible to implement paint-drawn bitmap images into a visual studio c++ inviroment. Yet i dont know what tools to use, or how this will work exactly? I was thinking that i could draw a landscape/scenario in paint, and then put it into my screen as a wallpaper, so that the graphic wouldn't do anything but just be there.
2. As i mentioned, i would like the action to take place in a part of the screen. Is it possible to make a coordination system for me to work with? Fx. when the character is on x2,y3 and the left-arrow on the keyboard is pressed, he will then move to x3,y3? This would also allow me to put down certain objects and monsters at specific locations.
3. Is it possible to put images as background and then put another image (fx. a coin) on top of that, and make that piece of graphic interactive? (so when the character steps onto the coin, and fx. enter is hit, the coin will be removed and added to an inventory?)
I know this might sound like a big project for a rookie, but im willing to put alot of time into it, and hope i could make something work!
**EDIT** I realize that RPG's are pretty much text based, and im aware that alot of the images/animations will not have a function besides beeing pretty. So alot of this will actually be code i suspect, yet i would like to have a landscape and such just to spice things up a bit.
Thanks in advance.
- Karlsen
I've been browsing your forums for a week or too, looking for information about RPG games.
I'm very new to the whole C++ thing, but feel like im getting a hang of it. As a part of my examn project this year, i've decided to program a simple 2D-Rpg game (if possible!). Let me just tell your about my basic idea, then ill get to the questions.
The game:
I would like to make a very simple 2D inviroment, where the player will be controlling a character. I will then implement a few tasks and quests along the way, where the player must conquer some monsters and/or pick up various items. Im hoping it will be possible to make a field/area on the screen where the actual gaming will take place.
Here are my questions:
1. I've read that its possible to implement paint-drawn bitmap images into a visual studio c++ inviroment. Yet i dont know what tools to use, or how this will work exactly? I was thinking that i could draw a landscape/scenario in paint, and then put it into my screen as a wallpaper, so that the graphic wouldn't do anything but just be there.
2. As i mentioned, i would like the action to take place in a part of the screen. Is it possible to make a coordination system for me to work with? Fx. when the character is on x2,y3 and the left-arrow on the keyboard is pressed, he will then move to x3,y3? This would also allow me to put down certain objects and monsters at specific locations.
3. Is it possible to put images as background and then put another image (fx. a coin) on top of that, and make that piece of graphic interactive? (so when the character steps onto the coin, and fx. enter is hit, the coin will be removed and added to an inventory?)
I know this might sound like a big project for a rookie, but im willing to put alot of time into it, and hope i could make something work!
**EDIT** I realize that RPG's are pretty much text based, and im aware that alot of the images/animations will not have a function besides beeing pretty. So alot of this will actually be code i suspect, yet i would like to have a landscape and such just to spice things up a bit.
Thanks in advance.
- Karlsen
Comment