The xna4.0 tag has no wiki summary.
9
votes
4answers
849 views
Game Architecture
i have a question about a XNA game i'm making, but it is also a generic question for future games. I'm making a Pong game and i don't know exacly what to update where, i'll explain better what i mean. ...
7
votes
3answers
130 views
How can I create a strongly typed structure for accessing files in an XNA Content Project?
Preamble:
I'm working with an XNA Content project to hold all of the various textures (and possibly other resources) that I'm using as part of developing a game.
The default method of loading images ...
6
votes
3answers
90 views
'Nearest Neighbor' zoom
When I draw a stretched Texture2D, the pixels receive a Blur-like effect.
I want to use 'pixelated' graphics in my game and would like to know how to disable this in favor of the simplest nearest ...
6
votes
1answer
541 views
XNA - Signing in with Local Profile
I am trying to learn XNA (4.0) multiplayer networking for the PC only environment.
For development, I read that using local profiles (with SystemLink) for PC-only environment does not require me to ...
5
votes
1answer
161 views
Loading Textures from a reference to built content in an XML file
Goal
I'm trying to load a custom class that contains a Texture2D from an xml file using the default importer (XML Content), with no processor.
Approach
Lots of research online and a lot of ...
5
votes
3answers
332 views
C#/XNA pseudo-Random number creation
The c#/XNA process for creating random numbers is pretty quick and easy, however, it is quite possibly the worst distributing random number generator I have ever seen. Is there a better method that is ...
5
votes
3answers
698 views
XNA game performance
I am writing a game using C# 2010 and XNA 4.0. I want it to be a good game and not some "just another crap" and so one of my goals is good framerate. For this I would like to ask you for some advices, ...
5
votes
5answers
647 views
How do I find where memory is being used up in C#?
I have a C# XNA on WP7 project running and I'm finding that it's eating up memory between screen changes and not returning it, eventually leading to an outofmemoryexception.
I've looked and looked ...
4
votes
4answers
124 views
AI enemies converge on eachother while pursuing player
I have created enemies that chase the player around a game, but there is a problem. The enemies are too perfect and quickly converge on each other when they get close to the player. This is because ...
4
votes
2answers
169 views
What kind of projection and camera to use for 3D/2D top-down view?
I am probably going to smack myself in the face once the answer becomes clear, but I'm afraid I can't figure out what to do with my camera in order to effectively mix scrolling 2D and 3D objects.
...
4
votes
3answers
849 views
XNA 3.1 to 4.0 requires constant redraw or will display a purple screen
For menus in my game, I draw them once to the screen, then only redraw if they've been deemed dirty. This is handled through a boolean set to true whenever the user performs an action that should ...
4
votes
4answers
2k views
Windows Phone 7 target display resolution - recommendations?
The official WP7 emulator uses 800x480 resolution. The only info I can find on planned WP7 phones (eg Samsung Cetus i917) share the same resolution. While I realise the appeal of writing ...
3
votes
1answer
147 views
Texture2D is turning black
I have a Texture2D that I'm loading from the Content Pipeline. That's working fine, but as soon as I try to use SetData on a completely different Texture2D all of the textures in my game go completely ...
3
votes
1answer
102 views
The primary reference XXX could not be resolved because it has an indirect dependency on the framework assembly
I have created a simple XNA Windows Class Library with XNA 4.0 called "NivekGameEngine". I have created a simple game for the Windows platform, and I can access all contents of my dll just fine.
The ...
3
votes
2answers
72 views
special blend needed in xna 4.0
i got 2 dynamic texture ,and want add second texture color to first texture color But just where first texture color alpha is not 0
something like inverse transparncey
i add two pic link to show what ...
3
votes
3answers
168 views
How can I use threads to run database queries in XNA?
I'm currently developing a project with XNA that is pulling information (ID, name, file location, etc) about each of my objects (each object will be displayed on screen) from a local SQL database.
...
3
votes
1answer
203 views
Adding 3D to 2D game
I am making a top-down platformer game using sprites. I would like to add some 3d elements to add depth to the platforms, by drawing the platforms as pillars that extend down into the abyss. The ...
3
votes
1answer
298 views
What game engines are available for XNA 4.0?
http://forums.create.msdn.com/forums/p/12882/67856.aspx lists various engines that supported 3.1:
Visual3d.net
TorqueX
SunBurn
Axiom3d
Flat Red Ball
Ox
X-Engine
BetaCell
Thrust
...
3
votes
3answers
515 views
Drawing particles with CPU instead of GPU (XNA)
I'm trying out modifications to the following particle system.
http://create.msdn.com/en-US/education/catalog/sample/particle_3d
I have a function such that when I press Space, all the particles have ...
3
votes
1answer
645 views
Create XNA sprite on the fly from an image
I have an image, let's says a .png, that is uploaded by the user.
This image has a fixed size, let's say 100x100.
I would like to create 4 sprites with this image.
One from (0,0) to (50,50)
Another ...
3
votes
3answers
311 views
Best framework for little 3D application
I want to write simple application with some 3D objects for Windows OS.
The application is very simple, like a gallery where we can move and see some pictures. When users go to the some picture ...
3
votes
2answers
5k views
Good example of XNA 4.0 to save game data?
I am trying to work my way through the XNA MSDN documentation on saving and reading game data, and I am not having much luck.
In essence I have a manager class which keeps track multiple instance of ...
3
votes
1answer
5k views
Xna 4.0 3D Vertex example
I'm currently trying to make a simple square by combining two triangles, like in the tutorials by Riemer (Link to tutorial), but since a lot has changed from 3.x to 4.0, I find it difficult.
I would ...
2
votes
1answer
33 views
Gesture FreeDrag performance
I have a simple question, I'm trying to make an huge game for Windows Phone, but I still have a important bottleneck/issue/bad performance.
I've used the mango profiler, but I have seen no problem, ...
2
votes
0answers
100 views
What is a pipeline assembly in XNA 4?
I'm trying to build the demo of TiledLib by Nick Gravelyn. I downloaded the ZIP from BitBucket and opened it in Visual Studio 2010. When I try to build, I get the following error:
Essentially, this ...
2
votes
1answer
68 views
Changing variable values from external files in XNA 4.0
What is the easiest way to change the value of a variable in a XNA 4.0 game?
I have a few objects that I want to be able to show/hide (as a programmer not as a user) without rebuilding the game ...
2
votes
1answer
141 views
Simulating gravity in XNA
I'm trying to animate a 2d sprite in my XNA 2D game, by the force of gravity. I've developed a very basic class to achieve the simulation effect. This is my sample code.
namespace Capture
{
class ...
2
votes
2answers
191 views
XNA Windows Game (4.0) Good tutorial links?
I want to make a very simple game with a scrolling background. I can make a scrolling background and a character that moves around.
I guess i'm wondering how i would have a background in which my ...
2
votes
1answer
96 views
XNA Framework: Manipulating screen brightness
I am working on a project for Game with XNA Framework.
I am using a OptionsMenuScreen class to display different game options/settings to the user.
I have added two UP and DOWN buttons (Texture2D) ...
2
votes
1answer
96 views
Compiling f# for xbox360
I've been trying to compile some libraries I've written in f# to work in a game I'm writing for the xbox360, except I keep getting an error saying "The module/namespace 'System.Net.WebRequest' from ...
2
votes
2answers
83 views
Rotation of an object around a central vector2 point
I should preface this with I am not anywhere near a math person. The code I've found in another question seems to be working somewhat... except that it causes the object I place to rotate in a large ...
2
votes
1answer
86 views
When using a custom rigged and animated model with the XNA 4.0 Skinning example, why does the model animation become deformed?
[Image of the problem below]
The setup:
Xna 4.0
Modifying the project example at create.msdn.com/en-US/education/catalog/sample/skinned_model
A sample rigged and animated model of a woman from ...
2
votes
3answers
269 views
Windows Phone custom shaders error?
In Windows Phone XNA 4.0, I am receiving the following error when compiling: the windows phone platform does not support custom shaders.
This is really annoying, because I have an Xbox 360 version of ...
2
votes
1answer
318 views
Draw 3d model in XNA 4.0?
I'm drawing several models, with the following code to set up render states:
GraphicsDevice.BlendState = BlendState.Opaque;
GraphicsDevice.DepthStencilState = DepthStencilState.Default;
...
2
votes
3answers
186 views
Farseer physics Engine 3.1 with Mango
When I try to reference the project of farseer with a WP7 game targeted to mango, it gives an error about these projects being different in "refresh levels"
The integration with a NoDo Game works ...
2
votes
1answer
136 views
Scaling entire screen in XNA
Using XNA, I'm trying to make an adventure game engine that lets you make games that look like they fell out of the early 90s, like Day of the Tentacle and Sam & Max Hit the Road. Thus, I want the ...
2
votes
0answers
155 views
Xbox 360 XNA HLS Streaming
I am interested in creating a simple HLS Viewer for the Xbox 360 that works kind of like SilverLive. I have read about as much documentation oh HLS that I can find and am not sure where to continue. I ...
2
votes
3answers
133 views
Does XNA GS enough to make 2D online game?
I mean,I've seen amount of game engines which based on XNA.
Is XNA GS itself a game engine?If not what is the different and should I use game engine?
2
votes
1answer
56 views
Moving the player with arrow keys instead of thumb sticks
I'm working on a 2d game and I want the player to be able to be moved with the arrow keys.
I've managed to make the player move by the left thumb stick (Xbox 360 controller)
GamePadState ...
2
votes
1answer
64 views
What I need to create this control for this game? (Like pipeline)
This is my first post at this section (XNA and game development). I'm trying to get something the below image. As you can see, there's a highway and inside of it, there'll be some objects moving ...
2
votes
1answer
220 views
How to texture a cylinder in XNA4 with multiple textures?
Basically, I'm trying to cover a slot machine reel (white cylinder model) with multiple evenly spaced textures around the exterior. The program will be Windows only and the textures will be ...
2
votes
2answers
274 views
Unable to select Target framework for XNA 4.0 games
I have an XNA 4.0 project that I would like to be compiled with the .Net 4.0 Full profile, but it is set to Client profile by default. The Target framework combobox in the Application tab is grayed ...
2
votes
1answer
129 views
Is it possible to define the asset name in a custom XNA content processor?
Normally, when loading content using XNA's Content Pipeline, the compiled .xnb files are accessed using an assigned "Asset Name" that can be defined in the Visual Studio GUI. By default, this name is ...
2
votes
2answers
570 views
Learning XNA 3.1 Vs XNA 4.0 [closed]
I am starting out learning XNA and its going smoothly. However I wonder if I am shooting myself in the foot by learning 3.1 not 4.0?
I am aware of whats new: ...
2
votes
2answers
238 views
Point to Multiple Render Targets
Is there any point in using multiple render targets? Couldn't one just draw to one render target and store that in a texture before clearing the target and using it again?
2
votes
1answer
374 views
Why are my screenshots only black?
could someone tell me why my screenshots are only black? I am still learning and couldnt find a clue why they are only black.
This is my Utility class
static class XNAUtilities
{
private static ...
2
votes
1answer
364 views
Serializing XNA 4.0
Type
'Microsoft.Xna.Framework.Graphics.RasterizerState'
in Assembly
'Microsoft.Xna.Framework.Graphics,
Version=4.0.0.0, Culture=neutral,
PublicKeyToken=842cf8be1de50553' is
not marked ...
2
votes
2answers
320 views
xna 3d bullet bath and draw method gone wrong
I'm designing a 3D game, in which I have a camera behind a spaceship to move around. I have added some asteroids in the game as well, and I want to add bullets. I used quaternions to control the path ...
2
votes
2answers
124 views
Add constant latency to graphical output in XNA 4
does anyone know of an easy way to add a constant latency (about 30 ms) to the graphical output of an XNA 4 application?
I want to keep my graphical output in sync with a real-time buffered audio ...
2
votes
4answers
876 views
Playing multiplayer games with XNA on the computer (NOT XBox)
I have just started programing and i have done some stuff with XNA. i created my first 3d game similar to minecraft.
but its boring. so i decided to take a look at networking as there was a tutorial ...