User Tag List

Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 11 to 20 of 23

Thread: Problem with lag on the Xbox

  1. #11
    Clicker Multimedia Fusion 2 DeveloperiOS Export ModuleSWF Export Module
    Francois's Avatar
    Join Date
    Jul 2006
    Location
    Montpellier, France
    Posts
    6,920
    Mentioned
    1 Post(s)
    Tagged
    1 Thread(s)
    XNA is somewhat peculiar when it comes to the speed of the main loop.
    The loop is divided in two : handling of the game, and display.
    If one of the two takes more than the necesary time (for example 20ms for a 50hrz game), the next time, XNA will only call the handling routines and not the display routines to fall back.
    Although it is a good idea, it makes the game completely collapse when it is just a little too slow, and then you get a 1 fps animation rate.
    I suggest you reduce the speed of the game in the properties of the application until it works again. Proceed by trying each new frequency... FOr example, if you start at 50, try 40. If it is back to normal at 40, try 45. If you have lag at 45, try 42 etc... Choose the highest frame rate that gives a good animation.

  2. #12
    Clicker Fusion 2.5 DeveloperFusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleXNA Export Module
    DistantJ's Avatar
    Join Date
    Jan 2008
    Location
    Gloucester, UK
    Posts
    2,144
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)

    Problem with lag on the Xbox

    Interesting stuff, Francois!

    I found that my game worked fine in XNA until I introduced a handful of fastloops. Those knocked it right down to 1FPS like you mentioned. Based on that I'd say people planning to build for XBox should definitely steer clear of fastloops.

  3. #13
    Clicker Fusion 2.5iOS Export ModuleXNA Export Module

    Join Date
    Oct 2009
    Location
    Jacksonville, TX
    Posts
    96
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have been experiencing a lot of the same problems with extreme lag on the XBOX360. Just tried out a fairly large frame (10240x1024) with 10000 bouncing ball objects flying around it, this ran great on the PC--however on the Xbox this same level crawled even with just 25 or 30 moving objects out there (even after knocking the application frame rate down to 30fps)! The actives I am testing with are basically just 64x64 bouncing balls, they don't use any crazy fastloops or anything like that... I have been working on this Xbox prototype for a few months now, and this is the first time I have really considered giving up and just making a PC game. If I could even get 1% of the performance on Xbox that I am getting on PC then there might be hope... but currently I am not. I have been very careful to build clean and tried to follow all the best practices for Xbox development, but so far I have never seen my game perform on Xbox360 at anywhere remotely approaching the level it does on the PC. Is it hopeless? Should I do what a lot of other indies seem to be doing: utterly abandon Microsoft and everything to do with XNA? Any help/advice would be appreciated--thanks!

  4. #14
    Clicker Multimedia Fusion 2 DeveloperiOS Export ModuleSWF Export Module
    Francois's Avatar
    Join Date
    Jul 2006
    Location
    Montpellier, France
    Posts
    6,920
    Mentioned
    1 Post(s)
    Tagged
    1 Thread(s)
    The XBox is a fairly poor machine. You cannot have too many objects and loops.
    Nothing much to say other that "simplify your games"....

  5. #15
    Clicker Fusion 2.5iOS Export ModuleXNA Export Module

    Join Date
    Oct 2009
    Location
    Jacksonville, TX
    Posts
    96
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the response Francois, I understand that the Xbox has some serious limitations and we designers just have to deal with that.

    I have actually really enjoyed trying out some gameplay ideas on the 360, and my original plan was simply to design within the limitations of the Xbox (no matter how severe), but the sacrifices in terms of time and effort required to maintain performance are just so massive! As much fun as it has been (and a valuable, if trying, learning experience), I have made the realization in the last couple of days that I may never be able to pull off the graphics or gameplay I have in mind on the 360. But then there is a little voice in my head saying "You can make it work Joel! Just make smaller rooms, and be smart about how enemies get created/destroyed"... And I start to listen to that voice and think about the Xbox again, but then I remember all the days and weeks spent trying to force things to work on the 360, the massive difficulty of doing even the simplest things, and I think "If I keep going like this I will never even finish the game, much less make it through the gauntlet of getting this thing approved and released on Xbox". At the end of the day I guess what is important to me is realizing the original vision and inspiration for the game--I am just not sure it is technically achievable on the Xbox, at least with my level of MMF2 proficiency. And I am even less sure that the reward at the end of that road is worth the extreme effort and sacrifice it will take to get there. I always tell my students "use tech that works for you, not against you", and I think this is good advice. Perhaps it is time to take a big fat dose of my own medicine, stop being a slave to the 360, and get back to just being a happy game designer creating a fun game.

  6. #16
    Clicker Fusion 2.5 DeveloperFusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleXNA Export Module
    DistantJ's Avatar
    Join Date
    Jan 2008
    Location
    Gloucester, UK
    Posts
    2,144
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    I've found that the best thing to do for porting to XNA for XBox is to lower the maximum number of actives at runtime (for particle effects etc.), deactivate all off screen and avoid fastloops wherever possible. I've found I can get away with using one set of fastloops at at time but when multiple different fastloops are running at once it chugs. My game is pretty complex but remember it's a low res game being scaled up.

  7. #17
    Clicker Fusion 2.5iOS Export ModuleXNA Export Module

    Join Date
    Oct 2009
    Location
    Jacksonville, TX
    Posts
    96
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the tips DistantJ! I have had pretty good success with adding large numbers of actives (100 or more) to my small sandbox levels, the problems are coming now that I am trying to increase the size of the levels and add some visual touches like particles and parallax background layers. Scrolling maps bigger than 2560x2560 perform fine on the X360 with just the avatar in play, but don't seem to run well even with a very small number of actives (with bouncing ball movement) on the field, and I think it may have to do with the collision checks for these actives... Maybe if I could find a way to stream the backdrops as the player moves around the level? Does anyone have a method for doing something like this that will work in XNA?

    The walls of my levels are all built from an instanced 128x128 backdrop object, which means I have quite a lot of individual backdrops out there; could this setup be causing some problems for game performance? I have tried using fewer/larger backdrop images, and noticed some long load times and slow performance doing it this way... Has anyone had similar problems, and if so how were you able to work around them?

  8. #18
    Clicker Multimedia Fusion 2 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export ModuleXNA Export Module
    colej_uk's Avatar
    Join Date
    Nov 2006
    Location
    UK
    Posts
    739
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    For shortest possible load times, make sure you have 'group images in mosaic files' checked in the XNA application options. It makes a huge difference. If they are still long you must have a tonne of graphics or sound to load?

    I've found performance on xbox to be generally fine, although I am used to working with mobile exporter capabilities now.

  9. #19
    Clicker Fusion 2.5iOS Export ModuleXNA Export Module

    Join Date
    Oct 2009
    Location
    Jacksonville, TX
    Posts
    96
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks again for the help Cole, I will be sure to keep 'group images in mosaic files enabled'.

    Still not sure what is causing the extreme difference in performance of large scrolling level spaces on PC vs. X360; tried some out-of-the-box ideas yesterday like building the entire world out of active objects and then deactivating them when off-screen... but nothing has really worked yet. On the PC side, I continue to be amazed and delighted by how far I can push my prototype--it seems to take anything I can throw at it and ask for more. I have several enemy types that include multiple active objects and use some pretty intense fastloops: dropping several hundred of these complex enemies into a vast 10240x10240 field did not hurt game performance at all, everything ran wonderfully at 100 fps. This level of design freedom is just too awesome to ignore, and is basically the reason I am moving away from Xbox development and focusing on the PC.

    I have thought about trying to export for iOS or Android, but haven't really explored developing for mobiles as of yet. In your experience, are the demands and limitations of mobile platforms like these comparable to the Xbox360? I would expect the Xbox to have much more power and capability than a phone, but the 360 is a pretty old machine now so honestly I don't know whether it still stacks up against mobiles or not.

  10. #20
    Clicker Multimedia Fusion 2 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleMac Export ModuleSWF Export ModuleXNA Export Module
    colej_uk's Avatar
    Join Date
    Nov 2006
    Location
    UK
    Posts
    739
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I've ported 2 of my games to 360, and I'd say the xbox performance with XNA is kinda comparable to medium/high end smartphones running iOS/Android exporter with a few exceptions like fastloops. Which I think would be about what you can expect given that the xbox's hardware is from 2005, and modern high-end phones are approaching the same amount of computing power as a desktop PC machine from around then.

    I haven't tried anything with a huge playfield like you have though, so it could be that large play areas are a weakness of XNA. I'm about to start porting a much faster-paced project to 360, so I'll post here if I find any optimization tips.

    I don't think any of the exporters will ever be comparable the performance level of the PC runtime, as that's what MMF2 was originally designed around and they are, generally speaking, the most powerful systems.

Page 2 of 3 FirstFirst 1 2 3 LastLast

Similar Threads

  1. Xbox problem
    By Evilized79 in forum XNA Export Module Version 2.0
    Replies: 5
    Last Post: 25th March 2014, 03:57 PM
  2. how to get a value from INI on Xbox 360?
    By jchristiansen in forum XNA Export Module Version 2.0
    Replies: 1
    Last Post: 15th October 2013, 10:05 PM
  3. Problem getting XNA App to work on Xbox 360
    By Sylphglitch in forum XNA Export Module Version 2.0
    Replies: 3
    Last Post: 5th March 2013, 08:40 AM
  4. XNA for Xbox?
    By scurvy in forum Multimedia Fusion 2 - Technical Support
    Replies: 69
    Last Post: 23rd June 2009, 06:49 PM
  5. MMF 2 & XNA for the Xbox 360
    By Chrille in forum Multimedia Fusion 2 - Technical Support
    Replies: 9
    Last Post: 14th August 2006, 07:39 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •