Martin
|
Registered User
|
Comp-sci student at Birmingham University (09 class)
Startup indie game developer
|
|
5h |
comment |
C# Scripting language The javascript approach was looking god, but technical issues with type safety sank it, so this is the new approach I'm going to try :D |
|
5h |
comment |
XNA: Dynamic content loading without Game Studio installed? oh heh small world in the SO XNA section ;) I'll go check it out |
|
19h |
comment |
XNA: Dynamic content loading without Game Studio installed? glad to help :) |
|
1d |
comment |
Optimize color manipulation on XNA You could try calculating tile colour on the GPU of course... |
|
1d |
comment |
XNA: Dynamic content loading without Game Studio installed? If the model were in xnb format you could do it with the normal Content.Load, the problem is that the content pipeline for compiling resources from formats other than xnb isn't available on the redist of XNA (except for images, they're an exception that proves the rule). If you wanted to import models you'd have to use a filestream and parse the model file manually. Which is doable but not exactly trivial. Your best bet might be to look for a library for doing so, saving you at least parsing the model file, leaving you with the job of just putting it into an appropriate form to render with XNA |
|
1d |
comment |
C# Marshal class available on Xbox? My google foo is obviously low :( What did you search for? |
|
Dec 18 |
comment |
C# Marshal class available on Xbox? I could, but performance of the GC scales with size of the heap. So pooling lots of large arrays would be a generally bad idea. Also, this code is multithreaded and a thread safe pool is a real pain in the arse to build |
|
Dec 18 |
comment |
C# Marshal class available on Xbox? Because the xbox garbage collector sucks, so allocating lots and lots of things only to lose the references is a bad idea. I'm writing some code which needs very short lived large arrays of numbers, perfect for a little bit of manual memory management. |
|
Dec 18 |
comment |
C# Marshal class available on Xbox? Damn, I even searched on the XNA forums for this. Thanks. |
|
Dec 18 |
asked | C# Marshal class available on Xbox? |
|
Dec 17 |
comment |
XNA: Dynamic content loading without Game Studio installed? What do you need from your model class? Having a vertex buffer and an index buffer loaded in from a file is quite simple, doing things with animations etc will be quite difficult |
|
Dec 17 |
accepted | XNA: Dynamic content loading without Game Studio installed? |
|
Dec 16 |
comment |
Converting color value from float 0..1 to byte 0..255 floor(clamp(f, 0, 0.9999999)*256) |
|
Dec 15 |
comment |
why is the second DatabaseConflictException being thrown? What kind of concurrency do you have going on in your system? |
|
Dec 15 |
comment |
why is the second DatabaseConflictException being thrown? try resolving without keeping changes? |
|
Dec 15 |
comment |
Are spinlocks a good choice for a memory allocator? They're pointless on single threaded programs, but even a single core computer running multiple threads needs locks. Using a spinlock is so cheap that a single thread program would have no slow down (it's a few instructions) |
|
Dec 15 |
comment |
2D rendering with per-pixel lighting/normal map - directX All of your normals are the same? exactly the same? Then all you need to do is modify the approach I suggested in my answer, but instead of having a normal map simply pass in the one single normal you need. For added efficiency just pass the dot product of the light direction and the normal in directly. |
|
Dec 15 |
answered | why is the second DatabaseConflictException being thrown? |
|
Dec 15 |
answered | 2D rendering with per-pixel lighting/normal map - directX |
|
Dec 15 |
answered | XNA: Dynamic content loading without Game Studio installed? |
|
Dec 14 |
awarded |
● |
|
Dec 10 |
comment |
Is it ok to put comments about bug fixes in the source code? Well that example comment is explaining how the method works. with a little historical context thrown in. |
|
Dec 8 |
answered | Python to generate output ready for Excel |
|
Dec 8 |
comment |
Is there a good Semaphore for XNA on the XBox 360? Sounds to me like the auto reset event is the bets option here |
|
Dec 7 |
comment |
Optimizing binary tree inserts to O(1) with hash map for write heavy trees A bloom filter is also O(1) for add, remove and find |
|
Dec 7 |
comment |
Optimizing binary tree inserts to O(1) with hash map for write heavy trees You could try using a counting bloom filter to determine if something is in the set. That supports additions, removals, and constant space. |
|
Dec 7 |
comment |
Collision Handling Between Circle and Line Segments Have you checked out the Farseer physics engine? codeplex.com/FarseerPhysics |
|
Dec 4 |
comment |
C# Scripting language This is the path we're going for. Thanks for your help :D |
|
Dec 3 |
comment |
C# Scripting language That's quite a good point actually, I'd never considered that |
|
Dec 2 |
comment |
C# Scripting language Ooh that looks positive, can you edit it into the answer so I can upvote you? |
|
Dec 2 |
awarded | ● Civic Duty |
|
Dec 2 |
comment |
C# Scripting language Yes, but is there a pure C# interpreter for LUA? not as far as I know :( |
|
Dec 2 |
comment |
C# Scripting language It appears that I do. Is codeDom available on the compact framework? |
|
Dec 2 |
asked | C# Scripting language |
|
Dec 1 |
comment |
Does lock allocate Ok, so I'm going to take it as a given that lock doesn't allocate. I don't suppose you have any references for this stuff? :/ |
|
Dec 1 |
revised |
webcam calling in xna added 108 characters in body |
|
Dec 1 |
comment |
webcam calling in xna I've updated my answer to be a bit clearer |
|
Nov 30 |
comment |
Why do garbage collectors freeze execution? Thankyou, these should keep me entertained for a while ;) |
|
Nov 30 |
comment |
Why do garbage collectors freeze execution? I wonder why someone down voted this? Surely it's polite to at least comment on why you're down voting something? |
|
Nov 30 |
comment |
Does passing a struct into an interface field allocate? Thankyou! I've suggested it to the author, he's not too keen but I might win him over ;) |
|
Nov 30 |
asked | Why do garbage collectors freeze execution? |
|
Nov 30 |
revised |
Does lock allocate added 452 characters in body; added 60 characters in body |
|
Nov 30 |
asked | Does lock allocate |
|
Nov 29 |
asked | Does passing a struct into an interface field allocate? |
|
Nov 24 |
answered | webcam calling in xna |
|
Nov 23 |
revised |
Generating an infinite sequence in Haskell edited body |
|
Nov 23 |
asked | Generating an infinite sequence in Haskell |
|
Nov 23 |
revised |
Why is this Haskell incorrect? added 817 characters in body |
|
Nov 23 |
asked | Why is this Haskell incorrect? |
|
Nov 20 |
asked | Bounding ellipse |
