Is it possible to store user-generated-content on Game-Center and share among all users?

164 Views Asked by At

We are implementing a leveleditor for our game and want to enable submitting the user-generated levels. All other users of the game should be able to play these levels. Is it possible to store the levels in GameCenter or is the only way to achieve this to set up a dedicated server?

In case we have to go with our own server, are there any preconfigured services for this scenario? Something like dropbox, with a nice API instead of having to code everything ourselves from the ground up.

Thanks a lot!

1

There are 1 best solutions below

1
On BEST ANSWER

GameCenter does not currently have support for downloadable content. You could peer-to-peer share small payloads of data between players using the matching API, but that's pretty clearly not what you want.

In thinking about other services, the first/easiest thing that comes to mind for me would be to use Amazon S3. It's super-simple, reasonably cheap, has good content distribution, availability, etc. (Sure beats running your own server, anyway.)