Questions tagged [xbox360]

The Xbox 360 is a video game console made by Microsoft and is the successor to the original Xbox. Development languages include C#, C and C++.

The Xbox 360 is the second video game console released by Microsoft, after 2001's . The Xbox 360 competes against the Nintendo and Sony . All three are called "next-generation" or "seventh generation" consoles. The Xbox 360 was officially revealed on MTV on May 12, 2005.

Development

Xbox 360 development is largely split into two distinct sections:

  1. XNA Development
    This involves using the XNA Framework to develop games/applications, and is done through AppHub. You can find the tools for development (XNA Game Studio) here. Anything developed using these tools must be written in C#.NET and can only be released onto the Xbox LIVE Marketplace as an 'Indie Game' (after passing the review process, of course). To debug your XNA app on the console itself, you need a membership. Another thing to note is that Xbox 360 apps can't access the Internet at all - all communication goes through Xbox LIVE or System Link.

  2. Professional Development
    This covers the development of complete Xbox 360 titles, and requires that you be part of the Xbox 360 Registered Developer Program. Once a development license is obtained (and the NDA is signed), Microsoft provides developers with access to the official Xbox 360 SDK and development hardware, which includes full Visual Studio integration and documentation for developing native Xbox 360 applications and libraries using C/C++. The development kit hardware comes in a few flavours and supports debugging from Visual Studio via ethernet, DVD emulation via USB, etc. For more information on the professional development program, see this information.

Referenced from this answer.

Resources:

231 questions
0
votes
2 answers

Is there an NPAPI Chrome Extension that can handle input from six Xbox 360 controllers?

I'm working on creating an HTML5 game designed for six players and I would like to include Xbox 360 controller support. Is there an existing browser plugin that enables JavaScript to access up to six Xbox controllers? If none exists how would I go…
Daniel X Moore
  • 14,637
  • 17
  • 80
  • 92
0
votes
1 answer

(PowerPC) Do not understand why the code stores contents of registers in the same address

I recently started reversing the game for the Xbox 360, and I really don’t understand why the contents of %r11 and %r10 are stored in the addresses [%r8] and [%r9] that have the same address (0x00010000). This code generated by IDA. .globl…
Akmubi Lin
  • 59
  • 1
  • 7
0
votes
2 answers

Save/load 2 XDocuments to/from one stream

I've got 2 XDocuments. One is some meta data, the other is a lot of data. On the Xbox (XNA), I'd like to be able to save both to a file stream, meta data XDoc first, then the actual data XDoc. I'd then like to be able to access just the meta data…
George Duckett
  • 31,770
  • 9
  • 95
  • 162
0
votes
0 answers

Windows 10 IoT Core terminates connection to XBox 360 wireless game controller after app start

I have a XBox 360 Controller attached, using the XBox 360 Wireless Receiver for Windows USB dongle, to my Windows 10 IoT Core (Build: 17763) machine. The receiver shows up in the dashboard and I can navigate in the left-sided burger menu. If I start…
Tobonaut
  • 2,245
  • 2
  • 26
  • 39
0
votes
1 answer

How to update a game history database? Bungie Halo Reach API

Well, I'm working with Bungie's Halo Reach API. Right now my code will get all the game ids for a particular player. I want to store the game ids in a mysql database and then in the future if a player wants to update the database the script will…
AndrewFerrara
  • 2,383
  • 8
  • 30
  • 45
0
votes
1 answer

How to retrieve the list of games from xbox API?

i am trying to retrieve a list of all xbox one games that are on xbox marketplace. The example from documentation: https://xboxapi.com/v2/browse-marketplace/games/1?sort=releaseDate This query returns only 20 records at time. So the problem is,…
Adrian C.
  • 260
  • 5
  • 21
0
votes
1 answer

Game Studio Connect Timeout

I realize this isn't exactly programming specific, so if this is not the place, I apologize in advance, and let me know so I can take the question down. Short Version When I try to connect to the Xbox via XNA Device Center, I get a timeout error…
Dave W.
  • 1,576
  • 2
  • 18
  • 29
0
votes
2 answers

.NET Compact Framework, Properties performance issues and tracking of field change

I have a situation where I should track the FIRST changes applied to a field. This thing applies to "some" (10 if I'm not wrong) fields of a struct which I need to be as efficient as possible (it's a struct that will be intensively used to…
Francesco Belladonna
  • 11,361
  • 12
  • 77
  • 147
0
votes
2 answers

Does MS XBOX Kinect have some Silverlight underneath?

I've heard rumors that the latest game console from Microsoft (Kinect) was built partly with using some Silverlight constructs - is this true? I can't find any documentation on it. Any help on this will be greatly appreciated.
user118190
  • 2,139
  • 7
  • 29
  • 45
0
votes
0 answers

Unity 2D - how to configure joysticks?

After looking up various tutorials and guides and not fixing my solution, I would like to know how to set up the left stick on an Xbox 360 controller so that it controls my character. I have tried setting up my Horizontal and Vertical axes in the…
rjkiv
  • 23
  • 6
0
votes
1 answer

Dumping Registers in PPC

I'm trying to dump the value of r5 so that I can see what var_A0 data is. I am trying to dump in PPC since I'm using UART debugging on the XBox 360 console, EX): I'm trying to figure out what the value of var_A0 is addi r5, r1,…
0
votes
1 answer

KODI and Xbox 360 controller

I have KODI 16.1 Jarvis, windows 10 x64 and xbox 360 wired controller with installed drivers (works on steam big picture and games). I want to use this cotroller to navigate on kodi, it should be plug'n'play, but it doesn't read any input. Which is…
H.Stefek
  • 23
  • 7
0
votes
0 answers

Why does this code crash when ran?

I am making an application for xbox 360 that will import functions which were exported from a system dll and call them when needed. I thought I did everything right as far as exporting then importing the functions, but it crashes on a single line…
Randy
  • 11
  • 1
0
votes
2 answers

How to dynamically detect user is standing or sitting mode in Kinect SDK 2.0

I am developing a gesture based C# application which will predict the gesture with the help of kinect Device (SDK 2.0) . I can do the gesture detection when user is in standing but not working in sitting position . I want to work my gestures in both…
user2986042
  • 1,098
  • 2
  • 16
  • 37
0
votes
1 answer

Linux : System.DllNotFoundException: UnityInterface2.dll

I am trying to run the asset imported from https://www.assetstore.unity3d.com/en/#!/content/10693 It works fine in windows , but I get below error in Linux at below code .....code start....... [DllImport("UnityInterface2.dll",…
Ashok Bugude
  • 91
  • 10