Jump to content

Cloud Saving


Kodiqi
 Share

Recommended Posts

Cloud saves are a feature I'd like to add to my games at some point (which have all been client-based so far). 

Are there any services that would be useful for implementing this? Or would I generally have to organise the hosting myself and connect to it from within my game?

For reference, I use Gamemaker: Studio but I'm mainly just trying to understand the mechanics of it at this stage. :) 

Link to comment
Share on other sites

With the popularity of lambda-based APIs, i.e. stateless idempotent APIs that run only when requested rather than all the time (see, serverless deployments), database-as-a-service is booming. Try a search for database-as-a-service, there are loads of providers, both AWS and Azure will offer comprehensive services to allow you to store arbitrary data without too much infrastructure work, there are probably smaller and cheaper providers also, I'd also expect you can find providers that offer one-click deploys of services.

I'm not sure exactly how these work, you'd probably also need to deploy a small API to handle taking your client data and stuffing it in to a database. Services like netlify.com, apex and now.sh can make deploying these sorts of lambda functions much easier than it used to be (they're superb for client-side only apps, like many games, too). They make 'one-click' deploys pretty easy, with the caveat that they are transient lambdas, not actual servers, so you get no persistence (hence the stateless bit).

The biggest problem is handling how these things connect, tools like Kubernetes and Terraform (and even docker-compose) can handle orchestrating spinning up these services and connecting them, but I doubt you'd need to go that deep. Most of these deploy tools can give you static IPs to handle connections manually, and you'd probably want to setup DNS to point at those IPs anyway to make things a little more manageable.

Again, there may be providers that can abstract all of these sorts of things away from you and give you 'one-click' deploy style. I've no idea on how effective, or costings, for this sort of thing.

I just did some quick searches (I find this sort of stuff super interesting), https://www.netlify.com/blog/2018/07/09/building-serverless-crud-apps-with-netlify-functions--faunadb/#2-set-up-faunadb, this outlines all the steps you'd need to get all the pros of serverless, you can use different bits and pieces of course, but I think this covers the base steps to get it up and running, and make deploying updates and new features to your codebase pretty neat (I only skimmed that article, I'm not sure if the client interacts directly with the DB or goes through an API service also in the project, either way would work, you'd probably prefer to go direct from the client if you can, but there are cons to that).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...