782 Topics
![]() | |
The [url=http://www.blackberrydeveloperconference.com/overview]BlackBerry Developer Conference[/url] concluded yesterday, but not before Research in Motion had the chance to unveil enhancements to its [url=http://na.blackberry.com/eng/developers/]BlackBerry Application Platform[/url], which now supports [url=http://en.wikipedia.org/wiki/OpenGL_ES]OpenGL ES[/url], a subset of the desktop graphics API specification for embedded systems. Useful for development of 3D games development and other graphics, it's … | |
-------------------------------------------------------------------------------- HELLO FRIENDS... I M MAKING A GAME WHICH IS CALLED "RAMP GAME". THIS GAME CONSIST OF 1) A BALL, 2) A BASKET, 3) SOME LINES ( which can be place anywhere by the user with in the boundary walls). HERE IS TEH LINK.... SNIP u can see what it … | |
hello, my problem is: i have a function that i pass a pointer to so that it can update a variable for me. when this function is called normally the variable updates and everything works fine. BUT when i call this function *as a seperate thread*, and pass it the … | |
Hello, I am currently doing a research at my university about the ways in which we can use multicore CPU to enhance graphics performance instead of putting all the load on the GPU, I am trying to work with both OpenGL and OpenMP and I am planning on using gDebugger … | |
So I'm working on this OpenGL 3D Graph program, and like, I ran into some trouble, since I wanted it to support fullscreen, so I made the following; [CODE] int main(int argc, char *argv[]) { ... // Some stuff glutSpecialFunc(SpecKey); ... // More stuff } [/CODE] Which is calling the … | |
Hello everyone, Im new to this forum and hope you all are doing well. Im currently developing mods for half life 2 (basic changes to game play but more level design stuff) I want to improve my skills and learn everything that I possible can. I really like the programming … | |
Hello everyone, So here is the deal. I have to create a webpage for a bodybuilding fitness club. The problem is that i don't know where to start. Also, am a uni student doing various modules like Database systems(we are using Postgre SQL), Interface Design and computer Graphics(OpenGL, Maya, Google … | |
I have been trying to get world coordinates of the cursor position for a program by: [LIST=1] [*]getting the top and left position of the client of the window [*]getting the global position of the cursor (GetCursorPos()) [*]cursor x - client left and cursor y - client top [*]zoom x … | |
I am trying to make a 3D Engine using OpenGL, I've got all the model loading, 3D nodes, all that stuff done, but I get linker errors when I try to compile, it.. these are the errors: ------ Build started: Project: TheAlienEngine, Configuration: Debug Win32 ------ Compiling... main.cpp core.cpp ae_3d.cpp … | |
Hello everybody, name's Thyaga and am currently a second year student at uni. I learning a number of languages such as Java, Python, C, C++, working with OpenGL and Maya, Wed Design(HTML, Javascript etc...). Am not pleased with my modules specifications because we are just learning basics right now, so … | |
I am making a rubix cube game in OpenGL and I have run into a problem with rotations. When doing multiple rotations (x, y, z) the axis gets rotated as well (ie when doing an x-axis rotation of 90 or 270 deg the y-axis becomes the z-axis and z-axis becomes … | |
in openGL how can I make the left of the screen = 0 and the right to = 10 or somthing, and the top = 0 and the bottom = -10. because i dont like working with numbers only ranging from -1.0 to 1.0. i read [URL="http://www.opengl.org/resources/faq/technical/transformations.htm"]here[/URL] that the coordinate … | |
I know a little DirectX 9(I can draw a little, etc.), but i want to learn DirectX 10. I decided to take the tutorial that is provided in the DirectX SDK, so i did. Almost immediately i noticed that it was heavy. My CPU usage shot up and it took … | |
Hi As part of a project, I am required to create an interactive 3D immersive world using whichever method I want. I'm thinking about making the world/map using UnrealEd 3.0, but wondered if this limits me in what I can do. I want to be able to talk to NPCs, … | |
i m working in c++ to make the 3D graphics project using opengl so if any one can help me regarding this | |
Can anybody tell me where to get a sample code for a 3d rubik's cube written in opengl? | |
Hi all, I'm not sure a allegro questing should e posted in Software Development>C++ but all other allegro questions are in this section, so here goes. Im doing some Genetic Algorithms, and normaly used OpenGL for doing the graphics, but now I reprogramming the GA to run on multicore systems, … | |
when using the data_files option in my setup.py #!/usr/bin/env python import ctypes from OpenGL.platform import win32 from distutils.core import setup import py2exe import sys sys.path.append("dist") setup(options = {"py2exe": {"compressed": 1, "optimize": 2, "includes": ["ctypes","Tkinter","Numeric"], "excludes": ["OpenGL"] }}, zipfile = None, data_files=['msvcr71.dll', glut32.dll'], windows=['myprogram.py'] ) I get an error saying msvcr71.dll … | |
hello every body i rewrote my game into pure opengl and pygame i have finished things like camera movement and other stuff. Now i really need help with the collision it basicly works even if the box/objekt is resized but now i want it to work when the objekt/box is … | |
If possible could you please take a look at this image/tileset and see if its possible to draw a 2x2 tile map with each of the frames in that image correctly mapped onto the quads in the tile map. The idea is to go on and use this as a … | |
I'm pretty new to opengl but been using c++ for a while now. How can I display variables using this? I can display single characters by using [code] glutStrokeCharacter(GLUT_STROKE_MONO_ROMAN,'0'); [/code] Why can I not use [code] int x = 0; glutStrokeCharacter(GLUT_STROKE_MONO_ROMAN,x); [/code] Compiles but won't display anything. | |
I have GeForce 7300 GT graphics card installed on my PC. A Game is saying OpenGL video driver not found. Can someone give the location of the driver ? Does GeForce 7300 GT Support OpenGL ? Thanks, Rakesh | |
Hello, I am trying to compile a working opengl project into an executable for windows. I ran into several import issues in the python imaging library, Numeric, and OpenGL. I managed to resolve all but the OpenGL ones. There is quite a bit of conflicting info on the subject out … | |
I'm having trouble understanding coordinate space using perspective in OpenGL. Basically I can't figure out how many units will represent the entire screen given a specific z-value or how spacing should be done, etc. In all the tutorials I've seen they plot these nice shapes placed evenly apart in different … | |
what is the difference between openGL glut and openGL? | |
I return with another perplexing issue that I just can't figure out, a generic and unhelpful"std::bad_alloc at memory location" error. Before I get to the code, some background... Having finished my uber-awesome 2D engine (thanks entirely to you guys) I decided it was time to break open the can of … | |
I have recently learnt the basics of c++ but I want to advance to making proper GUI's (and games) but I don't know what to use. I think the two most popular libraries are OpenGL and Direct3d but I'm not sure which one to use. could you guide me in … | |
Hey everybody im currently rewriting my game from an engine into opengl and pygame and im not sure how to use opengl with pygame here is what i have done so far =) [CODE=python] from sys import path,exit,argv ; path += ['.'] import wave, pymedia.audio.sound as sound from OpenGL.GL import … | |
Sorry to bother everyone with this, but i could do with a little impartial advice before conisdering a purchase. Im very much into real-time graphics using OpenGL, specifically to create 'Virtual Heitage' applications. These applications feature models and environments with close to millions of polygons. At the moment i use … | |
Beyond 3D [URL="http://www.beyond3d.com/content/news/462"]recently reported[/URL] that [URL="http://www.idsoftware.com"]id Software[/URL], you know the people behind such games as Wolfenstein, Doom and Quake, was not going to be making the next big release available on the Linux platform. Quoting an interview in a German publication with the id Software CEO, Todd Hollenshead, the article … | |
The Intel Open Source Technology Center has officially released open source graphics drivers for the 965 Express chipset in a move that while not exactly unprecedented is, nonetheless, a most welcome display of commitment to the provision of free software drivers. Moreover, it is a display of that commitment in … | |
Hi every body, I am coding in cl-glfw (a binding OpenGL for Common Lisp). I handle with moving objects on the screen using mouse. Because cl-glfw doesn't bind glut, it is difficult to interact to mouse, keyboard. Are the any people developed with cl-glfw? I need to discuss about moving … | |
Can anybody guide me to implement mouse based zoom in, zoom out, and then scroll up,down,left,right (like in adobe reader while viewing pdf file). I m using openGL. | |
Greetings, It has been a while since I have posted and as usual new things yield new questions from me. I am ever at the mercy of the forum gurus. Anywho, I'm making a 3d solar system. One thing that I want to make possible is to turn on and … | |
Hi, [B][I am experienced][/B] I would like to create a virtual 3D world. I am familiar with SDL and 2d graphics programming. I am experienced with C++ and I know a little Java (I have enough programming experience to learn a language quickly). I am familiar with the traditional game … | |
I've spent a few hours tonight reviewing basic java syntax, but did not learn how to create applets or windows. I was reading tutorials on java3D, but sadly they were all pretty bad.. They didn't explain what was going on, and were using classes extending Applet and other java libraries … | |
I want to start graphics programming. I do SDL in C++, and took a look at OpenGL in C++, but it was like reading Greek! What functions handle graphics programming in Java? I am not very good at Java, and would like to bring it up to the level my … | |
Hi, [B][I am experienced][/B] I would like to create a virtual 3D world. I am familiar with SDL and 2d graphics programming. I am experienced with C++ and I know a little Java (I have enough programming experience to learn a language quickly). I am familiar with the traditional game … | |
Hi! I have been programming in FreeBasic for 2 years now, and decided to switch to C++ a few weeks ago. This means that I'm not completely new to programming. I downloaded Visual C++ Express Edition 2008, and have already read all 12 chapters of C++ Beginners Guide (well the … | |
hello dear users.. i am working on a simple 2d game like DANGEROUS DAVE (if anybody played he will know better)... i was working fine although i am new to openGl and glut... now there is a problem that i want my character ( in fact a bmp image) when … | |
Hello, my problem is of that kind beginners use to have. After following some glut tutorials I've decided it's time to do something small generally on my own. An obstacle appeared at the very beginning. At the moment I got stuck, all my code was supposed to do was drawing … | |
I'm getting problems with this code. I'm trying to use OpenAL. A sound SDK developed by the makers of OpenGL. When I use this code: [code=c++] #include <conio.h> #include <stdlib.h> #include <stdio.h> #include <al/al.h> #include <al/alc.h> #include <al/alu.h> #include <al/alut.h> ALuint Buffer; ALuint Source; float SourcePos[]={0.0f,0.0f,0.0f}; float SourceVel[]={0.0f,0.0f,0.0f}; float ListenerPos[]={0.0f,0.0f,0.0f}; … | |
Sorry I am asking a beginners problem between professional discussion.But I realy confused witch one is better.qt, gtk, wx, opengl or one else.please guide me with a clear comparison. Thanks dears. Editor ... moved from Re: Python GUI Programming (rule is: ask question in regular forum) | |
I need help with commenting this code. I bet it is easy but I am a newbie and i am really bad in it. Can anyone help me ? The code that should be commented : [url]http://www.opengl.org/resources/code/samples/glut_examples/examples/scube.c[/url] | |
I have been using just SDL for alot, but it really olny does 2d things well. So I started learning OpenGL from the tutorials at [url]http://anomtech.uuuq.com/[/url] I was fine using Dev-C++ until the textures tutoiral, where the program would immedently crash as soon as I compiled/started it. So the maker … | |
i have made a opengl gui and would like to share it with the public. Please leave any comments, questions, or anything about this that you have and i will try and answer them. It has included examples and you install it like all of the other API's. Thanks. (Its … | |
Every time I try to execute my program I get an error:"The instruction at "0x00401585" refereced memory at "0x00000028".The memory could not be "read"". Pleas help me! I have linked -lagl -lalleg -luser32 -lgdi32 -lopengl32 -lglu32 I can't see the problem. :( [code=C++]#include <gl\gl.h> #include <GL\glu.h> #include <allegro.h> #include <alleggl.h> … | |
Okay I am a new programmer and I am interested in making games. I already began learning OpenGL, C++, and SDL. I need you guys to clear some stuff up for me please and also help recommend some tutorials/books for me. I want to make a 2D Pokemon MMORPG. (Don't … | |
I just added the allegro and allegroGL packages to my DEV C++ compiler. But I have an error with the set_gfx_mode funtion. I have written this : [ICODE]#include <allegro.h> #include <alleggl.h> int main() { if (allegro_init() != 0) { return 1; } if (install_allegro_gl() != 0) { return 1; } … | |
I just Started Java BUT I'M FOR SURE I CAN GET A HANG OF THIS! ive typed these pages out and Cant Find the Problem.. I NEVER START OUT EASY!! SO FAR EVERY TIME I START OUT EASY I LOSE WHERE I AM!! so this is a rotating 2d picture.. … |
The End.