This page is about ideas that aren't ready to go into bug tracker as feature requests yet and they might be discarded (quite more likely than those that make it into the bug tracker).
Currently we have a function to check for invalid tile IDs in a sector (right click on sector tab to find it), although it is useful it could be extended to more things. Some examples are:
Some main class and other classes that in some way register with it and is called as needed, either an event/delegate scheme (parameter could be current level, application interface and/or other stuff depending on how we do it). A more complex way, but that would be better if we want a method to auto-fix (simpler) issues as well, would be based on interfaces like (in pseudo-code):
interface QAChecker {
public bool Check(Level level, IQAReporter QAReporter);
public bool CanFix { get; }
public bool Fix(Level level, IQAReporter QAReporter);
}
Where IQAReporter would be some interface to show dialogs about errors and such. The methods could return true/false for if the check found problems, and for the Fix method, if the fix did succeed. CanFix would be if this QA checking class can fix issues as well as detect them. Note that this is just a quick mockup of it, and it is possible that it wouldn't work at all.