UPDATE! Can you please test this Direct3D demo for me? (Which I made)

Started by
39 comments, last by Eleventy 20 years, 10 months ago
Hey, it's been a long time since I've last updated this game, so I suppose I should let you all see my progress. Right now, it's still not a game, but I've added a cool feature, known as "Polygon-Level Collision Detection". You now realistically collide with the upsidedown (this is temporary) pyramid in the center of the world, plus, i've implemented sliding so you get a smoother "feel" when you are moving around. Other Updates: - Greatly improved on context management. The game now uses it's own functions and structures to manipulate and identify objects in the game. I hope to enable this game to support external levels whenever I get around to making them. - Greatly improved the physics system, made the banking less steep and fixed various other things. It now feels like you have more control of the ship. Original First Post Message: Hey, I've been working on this project for quite some time. As of right now, it is not really a game. All you can do is move around in the 3D world, but It does have some cool physics and graphics. I need feedback on that to see if I need to change the physics engine before I actually get to developing the game itself. All I need now is feedback on how it works. I know it works well on my computer, but I want to know how well it works on others. It's a Direct3D game where you are in a ship (not yet modeled - only the "cockpit" view is available) that moves around in a 3D world. Here are the controls: -- End of origional post -- Since I've updated the game, I have (temporaraly) removed gravity and implemented a fly up and fly down commmand. F - Move Forward V - Move Backwards A - Slide Left D - Slide Right W - Fly Up S - Fly Down Esc - Exit the game. (Sorry to whoever told me to change the controls, but as soon as I implement an options window, I will get around to it.) NOTE: Your video card must be able to support 800x600 resolution (I haven't yet implemented an "options" screen. -- this game may not run on all systems, but it should on most) When you run the executable, you will be taken directly to the game. Also note that this game does NOT support multitasking. If you use alt-tab, you will not be able to get back in the game. If this happens, Alt-tab back to the window and press the "Esc" key to end the application. If this doesn't work, simply use an alternate process (task manager) to end it. Here is the link to the download: Infinity Demo Binary (Win32) Infinity Demo Source (MSVC++ .NET) The download is only about 690K in size, so it won't take very long. Screenshot: Please don't judge this as a game, because it's not a game yet, but I want to see how it works on other machines before I continue. Tell me everything (how it performs, etc.). My System Specs --------------- AMD Athlon XP 1800+ (1533 MHz) MSI KT3Ultra2 ATI All-In-Wonder 128 Pro 512MB PC2700 DDR SDRAM (This is all you need to know, since this doesn't have sound yet) I have fixed the problem with the game being very dark, however, you still need to be in a dark room to see the sky (check it out, i've updated everything, including all the textures). Mastaba: Sorry for taking so long to actually realize what was causing the game to crash. I have correctly changed the WM_SETCURSOR command to handle the NULL pointer you were talking about, as I am now more experienced with DirectX and I spotted the problem. Oh yeah, this game now uses DirectX 9.0 instead of 8.1, so you'll need a copy DirectX 9.0 just to run it. Any feedback is appreciated Thanks. Feel free to play with the source code - insert objects of your own, etc. If you want, you can set the Pyramid to be rightside up again (the parameters to change it are near the end of the infinity.cpp file). Another fun thing to do would be to change the speed of rotation of the sky and try to move around in the world. I will later use this feature to give the player the feeling that the planet has been knocked off-orbit (probably in the last level). [edited by - JoshT172 on June 10, 2003 2:30:09 AM]

Eleventy

Advertisement
I downloaded it but I am not able to run the it. Maybe it is because i am using direct x 9 and you did not program your demo to accept any version of direct x. I forget how to do that though.

I get the error memory could be not be read at blah blah.

Another easy common error might be that you have your texture filenames and x file names static like "C:\\windows\\desktop\\blah blah" and other people will not be running the game from the same location. To fix that use
"..\\filenamehere" That runs checks from the current directory it is in for the file. Then again maybe you did all that.

I have no idea. Good luck on your engine. Maybe someone else can run it.

my specs.

direct x 9.
windows 2k
amd 2000
geforce 4 ti4200
Same problem. Access violation or some crap.

My specs:

XP
DX 9
P4 1500
GF4400
Can''t run it either, memory access violation.


WindowsXP Pro
DirectX 9
P3 950mhz
Radeon 9000 Pro
I programmed the game to run under DirectX 8.1.

How do you program it to accept any version of DirectX?

Eleventy

Also, what exactly is a memory access violation? I heard before that it means that it tries to access memory that is not available, but I''m not sure. Also, I programmed the game to tell you exactly why it would crash (via a popup window upon exit), but I don''t remember putting in one that had anything to do with an access violation. Please, help so I can fix this. Thanks for telling me that it didn''t work, though.

Eleventy

If you programmed in DX 8.1, it is still runnable under any DX version 8.1 or higher. DX is backward compatible.

An Acces violation is trying to "access" a pointer in memory that is not there, or does not have what you are requesting.

For example, LPDIRECT3DDEVICE9 Device,

If you ask for the device pointer and it was not there, or not setup properly, that could be an access violation.

Something in your code is buggy.
TechleadEnilno, the Ultima 2 projectwww.dr-code.org/enilno
Aight. Thanks for the help. As soon as I get home from school (in about 8 hours), I''ll post the source code on the net and let you look at that. I looked over the code and I can''t really tell what would be causing the problem, since it works perfectly on my computer. Also, the error has nothing to do with the ".x" files (which directory they were in) because I tried renaming the "C:\Projects\Infinity" folder (the folder it was compiled in) and it still worked fine in the "C:\InfinityDemo" directory, so my only option left is to post the source code and let you all look at it.

Eleventy

Can you put some screenshots up too please?


Read about my game, project #1
NEW (18th December)2 new screenshots, one from the engine and one from the level editor


John 3:16
Alright, I've posted the source code as I said I would earlier. This download is also small (~450K), so it won't take too long. This is the entire project (MS VC++ 6). The main source code is in the file 'infinity.cpp'.

Download Link:
Infinity Demo Source Code

[edited by - JoshT172 on March 9, 2003 2:11:22 PM]

Eleventy

This topic is closed to new replies.

Advertisement