Crashworks
|
Registered User
|
I program video games. That's kind of like embedded systems programming, only with more artists, and each function has a budget in microseconds.
|
|
2d |
comment |
When to use inline funtion and when not to use it ? I meant the opposite case more: the compiler is free to inline anything it likes, but it's rare that I see it choose not to inline something I told it to inline. The typical case I use here is get/set functions (which I inline in the .h rather than define in a .cpp), and 3d vector operations. For some reason, functions like dot/cross product, orthonormalization, etc seem to be just at the threshold where MSVC won't inline them on its own, but will respect the inline keyword. |
|
2d |
comment |
When to use inline funtion and when not to use it ? Not usually the case. inline is only a hint, but it's a hint most compilers take seriously. You can set the compiler to emit the assembly language along with the object code ( /FAcs in Visual Studio, -s in GCC) to see exactly what it does. In my experience, both those compilers weigh the inline keyword quite heavily. |
|
2d |
comment |
Do You Trust Hosted Services With Your Source Code and Intellectual Property? Yes, it's a general fatwa on sending work email to home addresses, or storing work email on a home PC (eg no locally caching Exchange). We just use GMail as an example in the policy document to hammer home the rationale -- that you are effectively handing over private data to some third party. |
|
2d |
comment |
Do You Trust Hosted Services With Your Source Code and Intellectual Property? Precisely why sending any work-related email to an colleague's home gmail account is absolutely forbidden at my company. |
|
Dec 17 |
comment |
Checking for null before pointer usage Well you obviously wouldn't deliberately dereference a NULL like that, but it can happen in a large program where some variable is usually stored as a pointer, and you dereference it to pass into a function like that. I've fixed many such crashes. |
|
Dec 17 |
comment |
Checking for null before pointer usage That's exactly what destructors and RAII are supposed to do. |
|
Dec 17 |
comment |
Checking for null before pointer usage It's possible to have a reference that is null. For example, if I called int *foo =NULL; f(*foo);. This will compile and call into f, and then segfault on actually using the reference. |
|
Dec 17 |
comment |
Pass by reference in C Sure it does. It just calls its references "pointers". |
|
Dec 16 |
comment |
Are multiple conditional operators in this situation a good idea? This is a very LISP idiom, by the way. |
|
Dec 16 |
revised |
Compelling examples of custom C++ STL allocators? corrected spelling, punc |
|
Dec 13 |
accepted | Memory Allocation/Deallocation Bottleneck? |
|
Dec 13 |
comment |
Sequence points and partial order Details like this are esoteric enough that frankly I wouldn't trust the compiler writers to have gotten them right either. |
|
Dec 13 |
comment |
Which is optimal ? Assuming the machine has enough registers and println is a leaf function that doesn't need or spill any registers of its own. |
|
Dec 11 |
comment |
Which is optimal ? Oh! Of course. Then there's definitely no difference in performance. The int is unlikely to be only kept on a register, though, as the register would surely have to be spilled to stack on or inside calling println (depending on that VM's particular ABI). |
|
Dec 11 |
comment |
Which is optimal ? I think primitive data types like this go on the VM stack when declared locally. If so, there's no difference in performance -- int value is "allocated" by reserving one word in the stack frame either way. |
|
Dec 10 |
answered | How is C# inspired by C++ more than by Java? |
|
Dec 9 |
answered | Benefits of declaring a function as “inline”? |
|
Dec 9 |
answered | Simple, efficient weak pointer that is set to NULL when target memory is deallocated |
|
Dec 9 |
comment |
Why aren’t video games written in Java? It's not vanilla Mono, though. EA needed a special team working on their own custom CLR full-time to make it work. |
|
Dec 8 |
comment |
Assembly Language & Compiled Languages The trouble (and reason for writing assembly) is that there are lots of things the compiler could do but doesn't. |
|
Dec 8 |
comment |
Assembly Language & Compiled Languages I usually compare it to the difference between a car with a manual transmission or an automatic transmission. People say that a manual transmission gets better fuel economy, and that is true if the driver is very skilled, because it gives him better control, and that control allows a skilled driver to shift in the best way. If the driver does not know exactly what he is doing, then that finer control means he will actually do a worse job than the automatic would have. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
awarded | ● Peer Pressure |
|
Dec 4 |
answered | Design code to fit in CPU Cache? |
|
Dec 4 |
comment |
Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers? These are sort of leading questions because I actually do write latency-sensitive UI code for systems of multiple in-order cores (eg Xenon). It's completely possible to get a decrease in total lag from threading up a task -- you just need to remember that "lag" is measured from start to end of the task as a whole, and decide how much it can be parallelized based on that. There's a tradeoff between startup time and execution time, with an optimal point at some number of threads. |
|
Dec 3 |
comment |
Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers? But surely you'd only bother to do this if the speed gain of multithreading exceeded the cost, for a net improvement in performance. From the user's point of view, UI lag is from the moment of input until the completion of the task (or at least until the next message pump with an "in progress" bar), not from the moment of input until the processors start to work on it. |
|
Dec 3 |
comment |
Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers? Why must optimizing a program for multicore introduce lag? |
|
Dec 3 |
answered | Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers? |
|
Dec 2 |
comment |
Simulated time in a game loop using c++ That's why he wanted the time: "I am using the SDL_Delay and time_left() to maintain a framerate of about 33 fps." |
|
Dec 1 |
comment |
Simulated time in a game loop using c++ I have the opposite experience. We use gpGlobals->currenttime absolutely everywhere: in the particle systems, AI behavior, speech, special effects, trigger hysteresis, weapon fire rates (and projectile movement), animation, scripting, on and on. I grepped just now and found 4,707 uses in one game DLL alone. |
|
Dec 1 |
comment |
Simulated time in a game loop using c++ One can make the case that there should be a constant rendering timestep, too, since a variable framerate feels choppier than a consistent one, and because the monitor is updating at 30/60hz (or 25/50 for PAL), so any frame that isn't aligned with a vsync interval will "tear" in the middle of the screen. It's very subjective though, so we made "wait for vsync" a customer-settable option. |
|
Dec 1 |
comment |
Simulated time in a game loop using c++ This is essentially what we do (in our commercial product). We run our game logic at a constant timestep of 10hz, but let the rendering thread run as fast as possible and draw frames as quickly as the GPU is ready for them. This means that physics and AI and entity logic isn't impacted by render speed (otherwise the world would go into slow-time when the rendering bogged down). The rendering isn't on a constant timestep, it just goes as fast as it can (up to 60hz, of course). |
|
Dec 1 |
comment |
Simulated time in a game loop using c++ Global state like time, which is used by everything everywhere, really ought to be in a global variable. Otherwise you'd have to pass your "current time and framecount" struct to every single function in the entire game. |
|
Dec 1 |
comment |
Simulated time in a game loop using c++ This is bad because you don't want a game to have a callback that does something every (n) milliseconds -- some frames might finish a little ahead of 33 and some others might lag behind. If you have a frame that takes 37 milliseconds and then set the next frame for 33 after that, then you'll be effectively slowing down time as your two frames (representing 66ms of game time) would take place over 70ms of real time. It's much better to have the game loop running at full speed all the time -- never sleeping or pausing -- and use a high-resolution realtime clock to mark constant timesteps. |
|
Nov 30 |
answered | Assembly Segmentation Fault |
|
Nov 25 |
accepted | Performance difference between C++ and C# for mathematics |
|
Nov 25 |
comment |
C++, an “impossible” behavior And that's why the disassembler window is always my first stop in debugging. |
|
Nov 24 |
comment |
C++, an “impossible” behavior Are you running a "debug" or "release" build? The optimizations in a release build are such that sometimes the debugger watch window will completely lie to you about your variables. |
|
Nov 24 |
comment |
Why should one bother with preprocessor directives? This is especially important in cases where there are functions that exist on one platform but not another -- like compiler intrinsics, which wrap SSE opcodes on the x86 and VMX opcodes on PPC, etc. In this case there is no viable alternative to using #ifdef, because templates will try to compile code using the nonexistent functions, even if only to later throw them away. |
|
Nov 21 |
accepted | x86 asm instruction set: Any _searchable_ offline reference? |
|
Nov 21 |
answered | x86 asm instruction set: Any _searchable_ offline reference? |
|
Nov 21 |
answered | What do you do to pass time during long operations (compiling, uploading, etc)? |
|
Nov 20 |
revised |
how to allocate a 2D array of pointers in c++ added 7 characters in body |
|
Nov 20 |
comment |
how to allocate a 2D array of pointers in c++ Good grief! Bjarne just loves to make trouble. I've made the correction. |
|
Nov 20 |
comment |
how to allocate a 2D array of pointers in c++ @Martin, well, the standard specifies a multidimensional array as contiguous (8.3.4). So, the requirement depends on what he meant by "2D array": if he means what the C++ standard calls a 2D array, then yes, it must be contiguous. If he just means something that has two subscripts, then heck, just use a vector<vector<int *> >. |
|
Nov 20 |
revised |
how to allocate a 2D array of pointers in c++ added 603 characters in body; added 81 characters in body |
|
Nov 20 |
answered | how to allocate a 2D array of pointers in c++ |
|
Nov 18 |
accepted | Which 32-bit/64-bit CPU architecture has the easiest instruction set? |
|
Nov 18 |
answered | Which 32-bit/64-bit CPU architecture has the easiest instruction set? |
|
Nov 12 |
answered | C memcpy() a function |
