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.

link|improve this question

2  
If your lead coded this, and has handed you the mess, then he deserves the questions you give him. – Ira Baxter Mar 30 '11 at 23:45
The "how often should I bug my team lead" question might be better suited for programmers. – Sam Miller Mar 31 '11 at 0:27
feedback

4 Answers

up vote 5 down vote accepted

You could run a tool like doxygen on the code base to get a dump of the relations between types, classes, etc and you can also get call graphs, etc from it.

This would probably help you see some of the picture.

link|improve this answer
1  
+1 doxygen is a great way to understand unfamiliar code bases, particularly the dependency graphs it can generate with dot. – Sam Miller Mar 31 '11 at 0:25
feedback

Did you ask him if there is any design doc for the code? Is it a framework or a standalone program? Can you look at the source code history in a Source Control tool? Asking questions is a good thing, all the more so if the code isn't self documenting. Comment-less code is indeed a pain to work with, especially when you're asked to change it. Adding tracing output is a good idea also. It might also be worth your while to ask him for an hour of his time so you two can go off to a room and you can ask your questions and he'll give more detailed answers (if he's any good). A whiteboard might help too!

Make sure you display to him that you have actually spent some time trying to figure it out, start your questions with something like "From what I can see...", "So is it correct that if x happens then y will happen later..." and if he answers something you can reply with something like "Oh so that's why x happens" or "Ok, now I see why you did that there..."

Multiple classes in a single header file isn't that big a deal though.

link|improve this answer
feedback

I am a big fan of Agile: code should be self-documenting. Picking variable and parameter names that make sense, and suddenly you don't need comments. (There is more to Agile than this, but this is the relevant part based on how I understand your question)

That being said, I think it is still worth having architecture documentation. My day job involves working on a software system customizing a framework developed by my company for individual customers. While I code the Agile way, if you don't understand the framework, you won't understand my code. If a coworker familiar with the product were to pick up my code, he would instantly know what is going on. We train our customers who pay for source licenses to develop on their own. Once they understand the system architecture, it goes from clear as mud to clear as day. They can dive right in because classes and variables are named consistently and descriptively.

I think the issue here is not so much the nitty gritty details of the code, but making sure you understand the big picture. Knowing the framework, architecture, toolkit, whatever, combined with modern IDEs that allow you to bounce around on declarations of unknown variables using hotkeys, you should be able to get through this.

I would talk with your fellow developers to pick up whatever big picture knowledge you need, and then poke at the code a bit. Investing a day or two up front could save much more time later on.

link|improve this answer
feedback

If all else fails, there is always the interactive approach: add some printf()'s (or equivalent) to various "interesting" places in the codebase, have them print out the current value of various interesting variables, and then run the program and see what gets printed. Repeat until you have something of a feel for what is being called when, and how.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.