Refactoring advice for big switches in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:35:23Z http://stackoverflow.com/feeds/question/942481 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c 2 Refactoring advice for big switches in C# Kath 2009-06-02T23:55:34Z 2009-06-03T00:17:05Z <p>I have an application in C#/Winforms that lets users place objects on a grid to create levels for a game. It has several tools for placing tiles/lights/doors/entities etc. Currently I just use an enum for storing the currently selected tool and have a switch statement to run each tools code. As I've been adding more tools to the application it's starting to get spaghetti like, with lots of duplicated code.</p> <p>Here is a cutdown version of the mouse down function in my editor class:</p> <pre><code> public void OnEditorViewMouseDown(Point mousePos) { // Check if the click is out of bounds. if (IsLocationOOB(mousePos)) return; if (CurrentTool == ToolType.GroundTile) { // Allow drags along whole tiles only. m_DragManager.DragType = DragManager.DragTypeEnum.Tile; m_DragManager.StartDrag(mousePos); } else if (CurrentTool == ToolType.WallTile) { // Allow drags along grid edges only. m_DragManager.DragType = DragManager.DragTypeEnum.Edge; m_DragManager.StartDrag(mousePos); } else if (CurrentTool == ToolType.PostTile) { // Allow drags along grid points only. m_DragManager.DragType = DragManager.DragTypeEnum.Point; m_DragManager.StartDrag(mousePos); } else if (CurrentTool == ToolType.AreaLight) { // Allow drags anywhere. ie. not snapped to the grid in some way. m_DragManager.DragType = DragManager.DragTypeEnum.FreeForm; m_DragManager.StartDrag(mousePos); } else if (CurrentTool == ToolType.PointLight) { m_CurrentWorld.AddLight(TranslateToWorldCoords(mousePos)); } else if (CurrentTool == ToolType.PlaceEntity) { m_CurrentWorld.PlaceEntity(TranslateToWorldCoords(mousePos)); } } </code></pre> <p>The switch is used in several other functions (OnMouseMove, OnMouseUp) and it seems like bad design (big switch copied in several functions). Any advice for refactoring something like this in a cleaner and more extensible way? I'm currently thinking of having a base <code>Tool</code> class and having each tool it's own class that overrides the functions it uses (OnMouseDown() etc.). Does this sound sensible?</p> <p>Thanks for reading.</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942501#942501 -2 Answer by Blindy for Refactoring advice for big switches in C# Blindy 2009-06-03T00:03:31Z 2009-06-03T00:03:31Z <p>Use a real switch statement, it will most likely get translated into a single <code>jmp</code> in assembler.</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942502#942502 1 Answer by Allain Lalonde for Refactoring advice for big switches in C# Allain Lalonde 2009-06-03T00:03:49Z 2009-06-03T00:03:49Z <p>I'm not terribly familiar with the syntax of C# but in general you could make the CurrentTool an object that has methods <code>StartDrag</code>, <code>EndDrag</code> which accept a <code>DragManager</code> as an argument. Then when the mouse is pressed down on the view you just invoke <code>CurrentTool.StartDrag(m_DragManager)</code>.</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942503#942503 3 Answer by BFree for Refactoring advice for big switches in C# BFree 2009-06-03T00:04:13Z 2009-06-03T00:04:13Z <p>Yea, you should absolutley have a base class (or at the very least an interface) that defines all the common methods needed across all Tools. Try to make this code work, and it'll give you a good idea of how to design your classes:</p> <pre><code>m_DragManager.DragType = CurrentTool.DragType; m_DragManager.StartDrag(mousePos); </code></pre> <p>where "CurrentTool" is an instance of your base class or your interface. </p> <p>So basically, when a "Tool" is selected, at that point you determine which derived Tool you're dealing with, but from that point on, you deal with the base class only, and forget about any enums or anything like that to determine the currently selected tool. Make sense?</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942507#942507 2 Answer by Frank Schwieterman for Refactoring advice for big switches in C# Frank Schwieterman 2009-06-03T00:06:07Z 2009-06-03T00:06:07Z <p><a href="http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html" rel="nofollow">http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html</a></p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942509#942509 6 Answer by Yann Schwartz for Refactoring advice for big switches in C# Yann Schwartz 2009-06-03T00:06:26Z 2009-06-03T00:17:05Z <p>You have the good intuition.</p> <p>Usually, in OOP, when you have rows of if's or humongous switches, it's a strong code smell. The best way to make this smell go away is to go with polymorphism.</p> <p>You should go ahead with your idea, having a base abstract class BaseTool, with the different OnXXX methods implemented as nops (just returns, so you only have to specify the behavior if your tool knows how to act on the method), and have each tool inherit from BaseTool and implement its own behavior by overriding the relevant methods.</p> <p>So your method ends up being</p> <pre><code>public void OnEditorViewMouseDown(Point mousePos) { currentTool.OnEditorViewMouseDown(mousePos); } </code></pre> <p>Depending on your design, you should also consider passing the DragManager to the method, so as not to be tied to instance variables laying around. An EditorContext (containing the DragManager) fitted with everything the method needs without having to fetch "global" variables would make your method more self-contained and less brittle when refactoring. The design itself will depend on the responsability: who is in charge of what.</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942510#942510 -2 Answer by Matthew Whited for Refactoring advice for big switches in C# Matthew Whited 2009-06-03T00:06:36Z 2009-06-03T00:06:36Z <p>Try flag enums. Each bit would be a different feature and would allow for better stacking of features per cell.</p> <p>Then you could just check for each bit even in different methods.</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942515#942515 3 Answer by JP for Refactoring advice for big switches in C# JP 2009-06-03T00:09:27Z 2009-06-03T00:09:27Z <p>Yes, <a href="http://en.wikipedia.org/wiki/Polymorphism%5F%28computer%5Fscience%29" rel="nofollow">polymorphism</a> is what you want here. You should define either an <a href="http://msdn.microsoft.com/en-us/library/sf985hc5%28VS.80%29.aspx" rel="nofollow">abstract</a> base class Tool or an interface ITool depending on if you need to add implementation to the base or not (i.e. if there there common functionality among all tools, you might use an abstract base class).</p> <p>Your manager should then take a Tool or ITool when something needs to be done. Your tool will implement a Drag function that takes the information it needs and either return what it needs to return or do what it needs to do. Or you could implement an <a href="http://en.wikipedia.org/wiki/Inversion%5Fof%5FControl" rel="nofollow">inversion of control</a> between your Manager and your Tool and inject the Manager into the Tool via property injection (Tool.Manager = dragManager) and let the tool do what it needs to do using the manager.</p> http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942531#942531 4 Answer by rjohnston for Refactoring advice for big switches in C# rjohnston 2009-06-03T00:16:56Z 2009-06-03T00:16:56Z <p>Sounds like a good place to use the Strategy Pattern: <a href="http://www.google.com/search?q=c%23+strategy+pattern" rel="nofollow">http://www.google.com/search?q=c%23+strategy+pattern</a></p>