You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The core of this project was written when I was a much less seasoned programmer, and SUCC as a whole is not up to my current standards of code quality. Todo, at some point: refactor the whole damn thing.
The text was updated successfully, but these errors were encountered:
In particular, good lord BaseTypes needs to be split up into a dozen smaller classes. I started doing this with TypeStrings (d0b2647), but it needs to come to the rest of the base types, ideally with some nice abstraction for classes with base type logic.
This will be absolutely necessary if we add complex arithmetic parsing for float types (#28)
Another notable space where code should be improved: instead of hardcoding which collection types are supported (currently Array, List, HashSet), implement an abstract solution that uses ICollection or something. (Though we'll still need special code for Dictionaries)
Oh yeah, also we really need a common interface for ReadOnlyDataFile and DistributedData, like ISuccDataContainer. Probably most of the methods, like GetAsDictionary, can be abstracted to extension methods on that interface.
The core of this project was written when I was a much less seasoned programmer, and SUCC as a whole is not up to my current standards of code quality. Todo, at some point: refactor the whole damn thing.
The text was updated successfully, but these errors were encountered: