Advise on creating a Game with cakephp

2010-06-02 Thread gmansilla
Hello, I plan to develop a table game like chess, from a MVC architecture... where do I write all the logic and validation? it would be written in a model, right? If so, these models wouldn't use any table, What if I need some classes to build the logic? would be all those classes just models? if

Re: Advise on creating a Game with cakephp

2010-06-02 Thread Graham Weldon
Chess sounds cool. Let us know how you go with it. You could implement pieces and boards as models, Board hasMany Pieces. If you need some non-MVC classes to provide some structure and organisation for your app, you can put them into the libs directory, and App::import() them from there. Hope