Hello everyone,
I am currently toying with the idea of implementing Eat Poop You Cat as my next game after the one I am working with is finished. This is a drawing game and I think that we have everything here to make it working.
Except the possibility to send images to the servers. The solution is found is to send the base64 version of a canvas to the server, which is standard javascript and HTML5 canvas. I am able to send it using an AJAX call with a POST argument in order to keep short URLs. What I cannot do is to get the argument with APP_GameAction::getArg() as the AT_alphanum type is restricted to alphanumeric chars.
Is it possible to get arbitrary strings from the APP_GameAction::getArg() function? That would leverage the last technical difficulty for this game.
I am currently toying with the idea of implementing Eat Poop You Cat as my next game after the one I am working with is finished. This is a drawing game and I think that we have everything here to make it working.
Except the possibility to send images to the servers. The solution is found is to send the base64 version of a canvas to the server, which is standard javascript and HTML5 canvas. I am able to send it using an AJAX call with a POST argument in order to keep short URLs. What I cannot do is to get the argument with APP_GameAction::getArg() as the AT_alphanum type is restricted to alphanumeric chars.
Is it possible to get arbitrary strings from the APP_GameAction::getArg() function? That would leverage the last technical difficulty for this game.