Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< 返回工具列表
C

cloud-game

> 编程语言
开源

Web-based Cloud Gaming service for Retro Game

2.5K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

Web-based Cloud Gaming service for Retro Game

CloudRetro

Open-source Cloud Gaming Service For Retro Games
Video demo: https://www.youtube.com/watch?v=GUBrJGAxZZg
Technical wrapup: https://webrtchacks.com/open-source-cloud-gaming-with-webrtc/
CloudMorph: https://github.com/giongto35/cloud-morph: My current focus on generic solution for cloudgaming

Discord: Join Us

Try it at cloudretro.io

Direct play an existing game: Pokemon Emerald

Introduction

CloudRetro provides an open-source cloud gaming platform for retro games. It started as an experiment for testing cloud gaming performance with WebRTC and Libretro, and now it aims to deliver the most modern and convenient gaming experience through the technology.

Theoretically, in cloud gaming, games are run on remote servers and media are streamed to the player optimally to ensure the most comfortable user interaction. It opens the ability to play any retro games on web-browser directly, which are fully compatible with multi-platform like Desktop, Android, IOS.

In ideal network condition and less resource contention on servers, the game will run smoothly as in the video demo. Because I only hosted the platform on limited servers in US East, US West, Eu, Singapore, you may experience some latency issues + connection problem. You can try hosting the service following the instruction the next section to have a better sense of performance.

Feature

  1. Cloud gaming: Game logic and storage is hosted on cloud service. It reduces the cumbersome of game initialization. Images and audio are streamed to user in the most optimal way using advanced encoding technology.
  2. Cross-platform compatibility: The game is run on web browser, the most universal built-in app. No console, plugin, external app or devices are needed.
  3. Emulator agnostic: The game can be played directly without any extra effort to set up the gaming emulator or platform.
  4. Collaborate gameplay: Follow the idea of crowdplay(TwitchPlaysPokemon), multiple players can play the same game together by addressing the same deeplink. The game experience is powered by cloud-gaming, so the game is much smoother. Check CrowdPlay section
  5. Online multiplayer: The first time in history, you can play multiplayer on Retro games online. You can try Samurai Showndown with 2 players for fighting game example.
  6. Horizontally scaled: The infrastructure is designed to be able to scale under high traffic by adding more instances.
  7. Cloud storage: Game state is storing on online storage, so you can come back and continue playing your incomplete game later.

Development environment

  • Install Go
  • Install GStreamer
# Ubuntu / Windows (WSL2)
apt-get install -y make gcc pkg-config libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev gstreamer1.0-plugins-good

# macOS
brew install pkg-config gstreamer gst-plugins-base gst-plugins-good

# Windows (MSYS2)
pacman -Sy --noconfirm --needed git make mingw-w64-ucrt-x86_64-{gcc,pkgconf,gstreamer,gst-plugins-base,gst-plugins-good}

Because the coordinator and workers need to run simultaneously. Workers connect to the coordinator.

  1. Script
  • make dev.run
  • The scripts spawns 2 processes one in the background and one in foreground
  1. Manual
  • Need to run coordinator and worker separately in two session
  • go run cmd/coordinator/main.go - spawn coordinator
  • go run cmd/worker/main.go --coordinatorhost localhost:8000 - spawn workers connecting to coordinator

Additionally, you may install and configure an X Server display in order to be able to run OpenGL cores. See the docker-compose.yml file for Xvfb example config.

Run with Docker

Use makefile script: make dev.run-docker or Docker Compose directly: docker compose up --build. It will spawn a docker environment and you can access the service on localhost:8000.

Configuration

The default configuration file is stored in the pkg/config/config.yaml file. This configuration file will be embedded into the applications and loaded automatically during startup. In order to change the default parameters you can specify environment variables with the CLOUD_GAME_ prefix, or place a custom config.yaml file into one of these places: just near the application, .cr folder in user's home, or specify own directory with -w-conf application param (worker -w-conf /usr/conf).

Deployment

See an example of deployment scripts if you want to try to host your own cloud-retro copy in the cloud. This script (deploy-app.sh) allows pushing configured application to the group of servers automatically. The cloud server should be any Debian-based system with the docker-compose application installed.

Technical documents

  • Design document v2
  • webrtchacks Blog: Open Source Cloud Gaming with WebRTC
  • Wiki (outdated)
  • Code Pointer Wiki

FAQ

  • FAQ

Crowd Play, play game together

By clicking these deep link, you can join the game directly and play it together with other people.

  • Play Pokemon Emerald
  • Fire Emblem
  • Samurai Showdown 4
  • Metal Slug X

And you can host the new game by yourself by accessing cloudretro.io and click "share" button to generate a permanent link to your game.

Credits

We are very much thankful to everyone we've been lucky to collaborate with and many people for help and inspiration from their awesome works.

Thanks:

  • Pion team for the incredible Golang WebRTC library and their support.
  • Libretro team for the greatest emulation lib.
  • kivutar for go-nanoarch and ludo.
  • gen2brain for the h264 and VPX encoder.
  • poi5305 for the YUV video encoding.
  • fogleman for the NES emulator.

Art

  • October 2nd - Gameboy poltergeist by Wayne Kubiak (wanyo)
  • 1978 by Simon C Page
  • Linear Video game controller background Gadgets seamless pattern by Anna

Announcement

CloudMorph is a sibling project that offers a more generic to run any offline games/application on browser in Cloud Gaming approach: https://github.com/giongto35/cloud-morph)

Team

Authors:

  • Nguyen Huu Thanh (https://www.linkedin.com/in/huuthanhnguyen)
  • Tri Dang Minh (https://trich.im)

Maintainers:

  • Sergey Stepanov (https://github.com/sergystepanov)

GitHub Issues· 0 开放

在 GitHub 查看全部

暂无开放 Issues,或尚未同步最近议题。

核心特点

  • •Install Go
  • •Install GStreamer
  • •make dev.run
  • •The scripts spawns 2 processes one in the background and one in foreground
  • •Need to run coordinator and worker separately in two session
  • •go run cmd/coordinator/main.go - spawn coordinator
  • •go run cmd/worker/main.go --coordinatorhost localhost:8000 - spawn workers connecting to coordinator
  • •Design document v2
  • •webrtchacks Blog: Open Source Cloud Gaming with WebRTC
  • •Wiki (outdated)

> 标签

Goantstreamcloud-computingcloud-gamingdistributed

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言