871 Topics
![]() | |
I am having trouble completing This hangman project. It mmost be done using model view controller pattern. Here is what i have so far //Header file declarations import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.FileInputStream; import java.io.IOException; import java.util.Scanner; //Class declaration class HangmanModel extends JFrame implements ActionListener { … | |
My cousin wants me to repair her original fat XBox 360. It will play DVDs fine, but when trying to load a game just completely locks up. I've determined that the disk drive is failing, and that it is a Philips Lite-On DG-16D2S. I have an old busted 360 and, … | |
I'm working on a small concept demo for a friend and I'm stuck on the UI. I'm trying to build something akin to an FPS interface (using mouse-look and the iconic WASD). I'm working in a Windows environment (Win7 to be precise), so I figured I'd use the standard Windows … | |
Hi, I own a Logitech MOMO and when I plug it in to the computer, the computer doesn't see it. I've tried reinstalling the software, restarting the computer, and plugging the USB connector into a different drive. Any solutions? | |
Hey guys, I have just finished a very simplistic game where the object of the game is to move out of the way of a falling block. Still only version 1 so don't expect much but your welcome to have a go and post any feedback on this thread. Looking … | |
Basically im trying to make a game where shapes fall from the sky and the user controls the sprite to avoid them. I have it working but only with 1 block falling at a time. I am using the paint method to draw my shapes. I was wondering how to … | |
Hi everyone, I'm working on a project for my computer science class and we're supposed to make a java applet game. I'm not very far in the game quite yet, but I'm trying to make sure that the mouseListener and the rectangles work before I continue on with the game. … | |
[CODE]class Personaje(object): def __init__(self,vida,posicion,velocidad): vida = None posicion = None velocidad = None recibir_ataque = None def recibir_ataque(vida): recibir_ataque in range(1,100) vida - recibir_ataque print "La vida actual del personaje es de", vida, " Luego de haber recibido", recibir_ataque, " de dano" def excepcionVida(vida): if vida <= 0: print "El … | |
Do you use a joystick/gamepad(or whatever else) for gaming purposes? Or do you use the traditional Mouse + Keyboard combo for playing games? My Personal opinion: Mouse + Keyboard. Reasons: 1)The mouse is much more sensitive and flexible, and then again, some games don't support a joystick. 2)I'm still unfamiliar … | |
Hey guys, I'm working on my game project for college, I have the code started, just enough to put the sprite on the screen and have a scrolling background. It is telling me there are no errors but when i go to run the game it terminates immediately, it's got … | |
I recently started reading Beginning DirectX 10 Game Programming written by Wendy Jones, and I'm about 60 pages in on the chapter about sprites, and I feel like I haven't learned anything, half the code they throw at me I can hardly decipher, and even if I do that, how … | |
This is un-official games discussion thread created since I didn't found any thread that discuss about games here... ******** You can discuss about anything that related about games here such as Reviews, Your expression, Rating, Cheats, Walkthrough, Spoilers, Console, New Release etc. Please be aware that some members don't like … | |
Hello DaniWeb Users, I am new to the forum however from what I have seen it is exceptionally good! I have searched the forums already and found various questions relating to a similar problem as mine however I am unable to work out how I can amend this for my … | |
I just decided that I wanted to make one with C++, but I'm not really sure what I should put in it. Any ideas? I don't just want it to be some boring thing where you have to "Press enter to continue" all the time. | |
I'm trying to make a Tic Tac Toe game for my Java class. I am not able to use JButtons only JPanels. I'm stuck on the part where my program determines if there are 3 x's or o's in a row. [CODE] public void winner() { if(3 = tictactoe[0].turn + … | |
Hello all, Decided to post in here as thought it would be safer, and wasn't sure if I'd be violating any rules on any other threads. Basically I'm looking for a Family Fortunes-type game that I can edit (questions and answers) and use - and I need it for a … | |
Hi! I am just wondering what would be fastest(performance-wise) of Game Maker(with GML) or Python with Pygame? | |
Trying to do some basic "Game of life", but for some reason i'm getting some weird results, the code: [CODE]#include "stdafx.h" #include "stdlib.h" #include <iostream> using namespace std; #include "windows.h" const int V=30;//Vertical const int H=40;//Horizontal char A[V][H]; int ne=0; //Set all to dead void setDead() { for (int i=0;i<V;++i) … | |
hi, i m having a problem with my computer. I m using windows 7 professional with sp1 (64-bit). here is my pc configuration: [COLOR="Green"]intel core-i5 (2.8 GHz) (LGA 1155) Gigabyte H67-D2H 2GB RAM 1TB HDD No ext. Graphics Card.[/COLOR] my problem is very weird. Every time i install a new … | |
I just bought 2 new games - EYE, which I recently started playing and am enjoying a great deal and the latest Deus Ex, which is the first game I paid full price for in years. I pre-ordered it months ago and then forgot about it. I generally only play … | |
The whispers have been [URL="http://arstechnica.com/apple/news/2009/08/leaks-begin-to-pile-up-concerning-legendary-apple-tablet.ars"]getting louder[/URL] lately that Apple will be be announcing the long-rumored Tablet next month at its September keynote. We have all learned that these rumors are [URL="http://www.daniweb.com/blogs/entry3626.html"]often wrong[/URL] and Apple moves at its own pace, but the idea of an Apple Tablet with a 10 inch … | |
Just wondering - What's your favorite flash game? 1. Free Rider 2 2. Winterbells 3. Thing Thing Arena 2 :) | |
[CODE] import java.io.*; public class CheckersGame { public static void main (String []args) throws IOException { BufferedReader jill = new BufferedReader (new InputStreamReader (System.in)); System.out.print("Enter name of the first to move: "); String name = jill.readLine(); System.out.print("Enter name of " + name + "'s opponent: "); String opo = jill.readLine(); … | |
I wanted to ask if some one in here knows how to code and make a good layouts for a mafia based game like exactly mafiakings.com make sure u go see it and tell me i will pay good if you can code a page like that game | |
Hello everyone! I have been working on a sudoku generator. My main aim is to create a completed 9x9 grid that follows the rules of sudoku. The grid should display unique numbers every time it is run i.e the numbers have to be randomised. My logic in tackling the problem … | |
I wrote this 3D Breakout game as a sample project to learn both Python and the visual module, vPython. It is based on a similar game I had on my Amiga back in the 80s. I don't expect that my Python is either standard or as elegant as it could … | |
Hi all. I know that others have posted about Rock Paper Scissors, but none of their posts are exactly what I am needing. My issue is that for my program, we are required to use at least 1 switch and 1 if statement, as well as keep track of the … | |
Have just finished my first attempt at a playable and interesting game in VB. Originally started in VB 6 i decided to re-write and expand in VB 2010. Just wondering if anyone has any ideas or comments on how it could be expanded/improved. :) | |
Music sharing with Facebook friends just became easier, and if that isn't enough to distract you, how about a game of Internet pinball? Two manufacturers are banking that these innovations will keep Facebook users entertained 24/7. Facebook users that subscribe to [URL="http://www.thumbplay.com/"]Thumbplay Music's desktop app[/URL] can combine it with iTunes … | |
Hello all, I am having some trouble with my tic-tac-toe game. My main problem is that I do not know how to properly make it so that when i click a button on the form acting as spots for the x's and o's the proper letter will come up and … | |
I'm creating a new functionality for an already existing software, made with VB .Net. This new functionality consists of rendering 3D objects on a specific form, and be able to move/rotate/resize/change,... those objects. For this task i've used XNA. I've created a new XNA Windows project and, in the specific … | |
[ATTACH=RIGHT]21994[/ATTACH]The latest in a series of round table industry events held in the UK, and featuring a panel of experts in the field of commercial software development, has warned that ignoring the popularity of casual and mobile gaming is a big mistake for any successful digital development strategy. Interestingly, it … | |
I have a project.A shape game There are shapes and yours should be controlled by arrow keys.. you should crash with another to gain point. once you collide to a another shape, it should adopt the shape and the color. The problem is when i se,t for example, shape1 top … | |
The iPhone 4 is one of the hot gifts for this festive season, and for good reason as Apple has managed to make the iPhone even better with the addition of a stunning 960 x 640 high resolution 'Retina display' screen with a pixel density of 326dpi (which is so … | |
Hi, I have a problem with GTA IV it runs very slow. My specs are: AMD Athlon II X4 645 @ 3.1 Ghz AMD Radeon HD 5770 Flex edition from Sapphire 4 Gig of DDR2-800 Ram Windows 7 Ultimate 32 Bit I run every game at max settings, only GTA … | |
[ATTACH=RIGHT]22075[/ATTACH]A new survey conducted by Newzoo for casual gaming developers PopCap Games has discovered that, as far as European gamers are concerned anyway, there simply is no one platform that is dominant. I appreciate that may come as something of a surprise when you look at the money that gets … | |
Hello. I need help. I can't install my Dawn of War Retribution on my laptop cause it says: 'Steam.exe (main exception): ERROR:copied steam.exe to C:\Windows\TEMP\steam27 but C:\Windows\steam27 doesn't exist' I use Windows 7 Home Edition. What does this mean? What do I need to do? | |
I need to control a 3D object using wii remote (motion plus inbuilt) in xna gaming environment. I am using C#. Actually I want to do something like in wii cricket or in wii tennis in xna gaming environment using c#. its a pleasure you can suggest me a place … | |
I am 13 and i really want to create a game and go commercial I would want to know which language is for both PS3 AND PC or Xbox and PC. dont suggest me an easy programming language or :MAKE YOUR OWN GAME!: program that gives you everything in your … | |
Hello, I am creating a card game and need some advice/pointers or code snipets if possible on sprite movement in the sence I need to create an action of a card been drawn from the deck. Basicly I need to make the sprite(card) move from the deck posion(x,y) to the … | |
For our android app project, we will be developing on java eclipse I am going to use opengl for graphics part. but what data structure should I use for the gameplay? | |
hi, i am looking for the most realistic racing simulator. I want it to be like real driving. And i also want it to be a free roam racing game. i prefer an offroad racing simulator. i use windows 7 64 bit. nvidia geforce 8400 gs low profile. Intel(R) Core(TM) … | |
Hi I have hard time connecting the if else statement because my teacher is telling us to use this kind of if else if (statement) if (statement) if (statement) condition else condition("error") end if else condition end if else condition end if this is a simple betting game can you … | |
![]() | I have heard that games can be built using c language. I request someone to post the code for a simple game.(if possible,simple code too).. |
[ATTACH=RIGHT]16416[/ATTACH]This Friday, Google will announce its acquisition of [URL="http://www.slide.com/corp/index.html"]Slide[/URL], for $182 million. Earlier this year, Slide was [URL="http://www.fastcompany.com/mic/2010/industry/most-innovative-web-companies"]named one of the ten most innovative web companies[/URL] by Fast Company. If you've ever thrown a sheep at someone on Facebook, you've used a Slide product. The company, which says it's responsible … | |
So it's this program which isn't behaving as it should. these are the classes I'm haing problems with: [code]#ifndef _CMENU_H_ #define _CMENU_H_ #include "Vec2.h" #include "Background.h" #include "Sprite.h" #include "BackBuffer.h" class Button { public: enum ButtonState { NORMAL, //when cursor is not near the button ANIMATED //mouseover event }; Button(const … | |
I played this game of pong I made for 3 hours two days ago. Summer is so boring. [URL="http://danielberry.zxq.net/pong"]http://danielberry.zxq.net/pong[/URL] | |
Hi, This is probably in the wrong place but I've looked everywhere for help, and nothing yet. I have a game save for an indie game, and I'm trying to edit the amount of coins I have. The method I have tried hasn't worked and I'm unsure why. Here was … | |
It's very interesting to read that the Playstation 3 [URL="http://news.bbc.co.uk/1/hi/technology/8478764.stm"]might at last have been hacked[/URL] by the same man who 'jailbroke' the iPhone for the first time. Interesting but not all that much use. I mean, who wants a hacked PS3 anyway? The report to which I've linked says there … | |
Hi everyone. Talking about 3D games, what would you choose - browser games availability or desktop games cool graphics? You know, as for the quality, desktop games have rich graphics, while browser games (although with quite good graphics), have great availability. Or all these don't matter if a gameplay is … |
The End.