I am currently working on (more specifically trying to get grips with) a production level engine that is fairly uncommented. As an example, if I take the following code which I have never seen before:
// If heading known, observe heading
observe_heading(xtrue(3), SWITCH_HEADING_KNOWN);
I can understand quite a few things from the comment and the names. Sure, I might not immediately know what xtrue or SWITCH_HADERING_KNOWN really is (is xtrue a function [most likely] or is it an object with an overloaded () operator?), but that is trivial. I get the big picture and filling the details is relatively easy.
Problem that I am having right now is with the big picture. I have worked with foreign code on my own and have made my own engine etc. (for example, Havok, Bullet, FMOD, Ogre3D etc.) but since they had documentation and comments I was never really completely lost. In this case, I have to resist the urge to ask my team lead a question every 5 minutes because I get totally stuck.
There are a few other problems that I won't mention although one in particular that makes things harder for me (and I would like suggestions/ideas) is multiple classes in a single header file and code like this:
class Foo
{
public:
// Some functions and variables
private:
// Some functions and variables
public:
// some functiosn and variables
private:
// some functions and variables
};
Also, there are a lot of functions in a single class and there are plenty of macros.
Now a lot of the so called 'problems' that I mentioned above are I am sure due to my inexperience with production level code and it would be very helpful to get some tips/tricks in this regard.
Last question, is how frequently should I 'bug' my lead? Currently, I try to keep it to 2-3 times in a work-day, but unfortunately since I am very new to the engine, I have more questions after 5-10 min. that I know will be solved easily if I were to ask the lead, but I go ahead and try to trace the code on my own and end up wasting a few hours. Also, since I refrain from asking the question frequently, I have to make some assumptions and sometimes the assumptions come out to be completely false leading to my understanding of the engine up until that point invalid.
Again, since I am in the learning stage, I am sure I am making plenty of mistakes due to lack of experience and would like some expert opinion on how to get better.
Thank you.