2D games are drawn in a two-dimensional space using two-dimensional objects. To represent its position, each game object will have an x and a y coordinate.
0
votes
2answers
40 views
How can I create rules for my spawning platforms?
I'm working on a 2d vertical scrolling game that is based on doodle jump and i'm using flash and as3 to create it. I've put the scrolling and platform spawning and so far so good, but thing I ...
0
votes
0answers
9 views
How to move sprite with animation to click in Android?
I'm making a 2D pokemon-like game for android. Now, I'm stuck with how to move the sprite. My map is divided to tiles, and when I draw my sprite I define a Rect which represents the tile in which the ...
-1
votes
0answers
21 views
Java Entity Spawning Class [closed]
I'm working on my first Java game and I would like to know it there is a easy way to set up a class that will enable me to spawn different kinds of entities. (each one has it's own class) Right now ...
0
votes
1answer
29 views
Scaling graphics causes game to stop rendering
I'm making a (currently rather simple) top-down 2D game in Java, and am having trouble implementing zooming.
It seems the only way I can scale is by reducing my width and height, and feeding a ...
0
votes
0answers
20 views
LIBGDX having more than 1 button on the main menu
i have 5 buttons i want to put on the main menu but when i have all 5 actors it doesn't work and when i take them all out and leave one in it works.
How do get around having multiple buttons?
Here ...
3
votes
1answer
48 views
LIBGDX background for main menu is showing up white
My background image is not showing up, it shows up as a white square in the corner like this.
https://dl.dropboxusercontent.com/u/45938379/menu.png
I need to know how to fix this, my actors are ...
1
vote
1answer
28 views
JPanel additional column on GUI upon run?
Been working on a school project in which my group and I are making a Wheel of Fortune game with a GUI and all. When making the panel for the puzzle to be displayed, I'm running into the problem of an ...
1
vote
2answers
34 views
How to handle collision after detecting it
I've been trying for the past few days to put simple collision into my simple game. I've looked in lots of places all over the internet but I just haven't found anything to be helpful. I'm just using ...
-2
votes
1answer
64 views
How to make a card deck in XNA
I want to make a game a card game and I was thinking to make the cards as a int so I can make the game rules with if ifelse and else condition's but I don't know how to take an int and put texture and ...
4
votes
2answers
137 views
C / C++ - How to manage the cycles in a video game? [closed]
I have already made some video games in C (small personal project). And the problem I encountered every time is the same, how to manage the cycles in a game.
For example, I coded a snake in SFML. I ...
0
votes
3answers
44 views
Best way to implement units in a small-scale RTS? [closed]
I am currently working on developing a small-scale 2D RTS in Java that will be unreliant on any non-standard libraries.
A crucial problem I can't answer properly is how to implement the units so each ...
-1
votes
0answers
45 views
Android game development images issue [closed]
I am developing an android game. i need different images of characters like rabbi,turtle,micky mouse,tom and jerry etc in my game.can i use all these characters that are already present in .png ...
0
votes
1answer
44 views
AffineTransform doesn't move image on key presses
I'm having a bit of trouble developing my first Java game using images instead of vector graphics. Currently I'm experimenting with moving an Image on a key press with the AffineTransform object. Only ...
0
votes
2answers
33 views
2D Tiled Game - Using new bad data
In my 2D Tiled game, I have a problem, when I update all the Object from a 2D array in a for loop inside another (looping in the 2D array from top left to bottom right, row by row(like the code ...
0
votes
1answer
25 views
How do i make linear movement smooth, and upon a click
I am trying to make a simple linear movement program where you click and the picture moves from one click to the next in a linear fashion. So far this works, but the movement follows wierd pathing. It ...
-1
votes
0answers
55 views
how are hybrid games(html5 and webview) in android? [closed]
I've a couple question to you. I've made up some HTML5 games, they are very simple so not a big deal. With webview component of the android, could I make this games in apk form.
When I searched in ...
2
votes
1answer
46 views
SDL : blitting on background instead of screen?
Hi i'm working on an SDL/C game , i've made a camera scrolling with a
big background (6000*1024) and (1024*768) screen,
game.screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, ...
0
votes
1answer
107 views
2D Game - Turn-based RPG using MVC pattern
I'd like to make a 2D game in Java using MVC pattern but I have some issues concerning the battles.
There are two groups, one of heroes and one of monsters.The player can control the first one.
My ...
-5
votes
0answers
12 views
How to make M3i zero work on 3DS V4.5.0? [closed]
my 3DSXl updated to V4.5.0 by mistake. and the M3i zero card can not work any more. It just shows "error, please power off to reset the system". How can I do to fix the problem? My flashcard is M3i ...
0
votes
2answers
38 views
setting a variable in local storage
Currently designing a game and the idea is that of a high score, so that when the current score is more than the local storage one it is replaced:
localStorage.setItem('highScore', highScore);
var ...
0
votes
1answer
24 views
Infinite scrolling whit more backgrounds
In my game i'm using infinite scrolling background.
This is my code:
- (void)setupBackground {
CGSize winSize = [CCDirector sharedDirector].winSize;
// 1) Create the CCParallaxNode
...
1
vote
3answers
55 views
Canvas collision?
Testing my game and when the user and monster collide I want the alert to pop up but no luck:
function die() {
for (var i = 0; i < monster.length; i++) {
if (user.destinationX === ...
0
votes
0answers
17 views
Get Color of certain point on moving 2D background
I am trying to build a simple 2D-game where a skier has to move along in a certain "corridor".
Screenshot of the game
Therefore I created a seamless background and move it along the screen from ...
0
votes
1answer
49 views
Is it possible to specify the size of an image/sprite in C++/SDL?
I'm creating a game similar to this and I'm attemptin to figure out how to generate randomly sized enemy fishes. As far as I can tell, the sprites you create in SDL take on the size of the image you ...
0
votes
1answer
33 views
How to move sprites from the Top to Bottom using Cocos2d Android?
I am trying to move a sprite from the top to bottom of the screen but I do not have any success at this moment... I've used the following as example.
In this case, the sprites, are moving from left ...
0
votes
0answers
66 views
making an image move along a line in java
Im trying to make a simple program where I click and an image appears and moves along the line from the starting point to the point where I clicked. I cant seem to get the image to travel along the ...
3
votes
2answers
86 views
Going through an int[,] array of 0's and 1's
Text in cursive: Older entries
Normal Text: Most updated entry
Ok, so I have a 2D array of ints, more specifically, of 0's and 1's.
Originally this was a BMP file (black & white), and I ...
0
votes
0answers
50 views
XNA: After the first collision the second paddle stop colliding with the ball
I wrote a code... for a ping pong game of two players... the first paddle works properly.. where as the second paddle stops colliding after the first collision... The Paddle code is in the ...
0
votes
0answers
41 views
lwjgl texture = java.lang.NullPointerException
OK, I've been trying to fix this problem for the past 4 days and I've searched for hours on Google for answers.
I know that for some reason my texture just doesn't get loaded and the texture equals ...
0
votes
0answers
129 views
How to set background image imovable and fill the full screen programaticaly in android game app
I Downloaded the source code for android "Missile game app" and did some changes to it, previously the start screen of the missile app had moving kind of text image, so i placed the background image ...
0
votes
1answer
56 views
Heuristic for minimax - Board Games
I am implementing an AI player for this board game.
I am using AB minimax for search, but I am having trouble finding a good heuristic for the evaluation function. How should I approach this problem?
...
1
vote
2answers
62 views
Storing 100 vectors XNA
I'm making a 2D top down survival game, maximum sprite count for the top level is 100 sprites.
When I use a random to generate their vector positions occasionally i'll get some overlap between ...
0
votes
1answer
166 views
CreateJS/EaselJS vs MelonJS
I'm about to start a new project with a friend of mine to create a HTML5 game. We wasn't sure which HTML framework/engine to use but eventually settled on EaselJS based on the amount of ...
0
votes
1answer
45 views
Sprite animation
I'm using this code to animate this sprite:
_ship = [[GameObject alloc] initWithSpriteFrameName:@"SpaceFlier_sm_1.png" world:_world shapeName:@"SpaceFlier_sm_1" maxHp:10 ...
-1
votes
3answers
72 views
Windows 8 touch app [closed]
I want to develop a metro application for tablets based on windows 8. This app will have some similarities to Draw something, but also be very different. This is a project for my university so I work ...
0
votes
0answers
52 views
Adding power ups to game.
In my game I have added power ups. with one power up, it works; with two power ups, it doesn't.
When I try to collect powerup2 the collision doesn't work.
Maybe the define is wrong, I'm trying with ...
2
votes
2answers
190 views
A* algorithm and games
I am trying to implement minesweeper solver in lisp. I know this is not rare problem but i didn't find any article that can help me with that. At start i have a minefield as input with numbers on ...
0
votes
0answers
67 views
C# GDI+ how to rotate one single image
i have been trying to make a game with C# GDI+. for this i want a image to rotate in the direction it is moving.
public Point PlayerPosition = new Point(320, 240);
public int PlayerDirection = 90;
...
0
votes
1answer
88 views
Null Pointer exception error while running the game app
Currently i'm working in the development of app for some website, but i'm bit crazy on developing game app, so by following the tutorial created an image on Canvas in the 1st level, and in the next ...
0
votes
0answers
54 views
Eclipse and SFML2 problems (pssibly linking?) on Linux Mint
I compiled sfml2 (latest github version) with gcc and make, and it all went fine. I'm able to compile example programs directly with g++ in the terminal, but whenever i use Eclipse it complains about ...
0
votes
1answer
47 views
Grouping 2D array of instances
I have a working solution for this, though I am convinced there must be a better implementation. In a nut shell the problem is this:
I am working on a connect>=3, bejewelled style puzzle game. When ...
0
votes
1answer
20 views
Is there a way to assign a jogl shape to a variable?
I am trying to create the game pong and drew a paddle with 4 vertices in jogl. I wanted to assign that jogl shape to a variable in order to test if it intersects with the ball which is just a jogl ...
-1
votes
1answer
48 views
High score and current score on the screen during the game [duplicate]
I want to show on the screen the current score of the gameplay and the storical best score. It is work, but every times i restart the game the best score change even if the current score is lower than ...
0
votes
1answer
97 views
High score and current score
I want to show on the screen the current score of the gameplay and the storical best score.
It is work, but every times i restart the game the best score change even if the current score is lower than ...
1
vote
1answer
52 views
“while running the android game app” gives warning message in logcat
To learn the implementation process of game apps, so had imported the game project but when i run the project i get this error message in logcat "No Launcher activity found! The launch will only sync ...
0
votes
1answer
88 views
A game library for Node with architecturally separated runner and renderer
I am building a simple game with Node. I use socket.io for communication between devices.
I want the node server to handle all the game logic; collision detection, scores ect.
The Node (socket.io) ...
0
votes
1answer
75 views
Ripple effect on a grid - any idea how they're doing this?
I'm just wondering how the this app accomplishes this particular ripple effect:
http://img44.imageshack.us/img44/6182/music.swf
This is the Tone Matrix game you may have played. No implementation, ...
3
votes
2answers
209 views
The Fastest Way to Batch Calls in WebGL
I'm trying to rewrite my canvas-based rendering for my 2d game engine. I've made good progress and can render textures to the webgl context fine, complete with scaling, rotation and blending. But my ...
0
votes
3answers
154 views
Best way to store data on server side for Java multilayer top down game [closed]
Me and some friends are making a top down shooter in Java and wanted to make it online we have set up a UDP socket connection which works fine but we aren't to sure about how to store data that we ...
2
votes
2answers
120 views
Simple java game: Filling up figures drawn by a moving cursor
So I'm doing the project of an introduction to Java course and it seems that I chose something that goes way beyond what I'm able to do. :P
Any help would be greatly appreciated. This is what I'm ...





