I'm looking to create the following block diagram in Tikz. Any suggestions? Tips?

I'm looking to create the following block diagram in Tikz. Any suggestions? Tips?

This doesn't look too complicated. There might even be some examples in the TikZ manual to get you started.
Here's how I might go about it:
Create \nodes for the rectangles and rounded rectangles. Also for the text in the right column, just with no rectangles. Give them names so you can draw the arrows between them. Use the positioning TikZ library to position the nodes relative to each other. You might also try the matrix library to create and space out the blocks of nodes that look similar.
Use the fit library TikZ library to draw the dotted line around the four nodes at the top left.
You might need to create \coordinate nodes to mark the intersections and turning points of your arrows.
Draw the arrows with \draw[->] paths. You might cut down on the number of intermediate coordinates with -| and |- instead of --. These will make L-shaped paths instead of straight line paths.
Don't worry about styling until the end. Create styles with \tikzset so that you can alter and update styles quickly.