dram55 / MarioMaker2OCR

Capture level information & events from a Mario Maker 2 game feed and display on a locally hosted web app.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mario Maker 2 OCR

This program will capture level info & events from a Mario Maker 2 game feed and display on a locally hosted web app. This includes the the level name, level code, level creator, death counter and level timer.

Install

Example

Example of the program in use from Karibukai Play.

Screenshots

Stream Overlays

How To Use

Setup

Use

  1. Open OBS before this program.
  2. In OBS, verify the VirtualCam is started.
  3. Open the Mario Maker 2 OCR program.
  4. Select the capture device with Mario Maker 2 gameplay from the dropdown
    • Make sure the capture device name matches the "Target Camera" name from Setup
    • OBS has their own Virtual Camera now that shows up as "OBS Virtual Camera" that is not the device you want to use.
    • If the camera does not show up in the OCR, try uninstalling and reinstalling the VirtualCameras
  5. Select a port number to host the web server.
  6. Select the resolution.
  7. Press Start button.
  8. The bottom status strip is updated.
    • A green box indicates the program is running.
    • Link will allow you to look at the web overlays, which display current level data.
  9. Setup a Browser source in OBS to point to the web overlay you would like.
  10. Play Mario Maker 2...
  11. When an event is detected:
    • The level information is written to ocrLevel.json file.
    • The web overlays will updated.

Customization

To customize the included overlays (font, color, etc.) make adjustments to the settings file for the overlay you are using: ex: \web\drambar\settings.js.

The web directory is where the web server will be hosted, any web apps created here can be used as a stream overlay. Feel free to create and share your own!

Technical

The wiki contains documentation on the program logic.

Websocket Message API

Once the program is started, the following websocket messages will be broadcast when detected. By default the address for this is ws://localhost:3000/wss. This is how the web overlays are updated. If you are integrating an external bot or custom overlay, you should connect to this web socket server and read in the messages.

On new level
{
  "level": {
    "author": "Valdio",
    "code": "8DY-1WC-FQG",
    "name": "Thwomping Grounds"
  }
}

On level clear
{
   "type" : "clear",
   "data" : "01'54\"743"
}

On death
{ "type" : "death" }

On start over
{ "type" : "restart" }

On exit or quit
{ "type" : "exit" }

On gameover
{ "type" : "gameover" }

On skip
{ "type" : "skip" }

On world record
{ "type" : "worldrecord" }

On first clear
{ "type" : "firstclear" }

Dependecies

The OpenCV library is used for image processing and Tesseract library is used for OCR (Optical Character Recognition). EmguCV provides a .NET wrapper for both of these libraries and is directly used for this project. EmbedIO for Websocket and HTTP server.

NuGet Packages

https://github.com/dram55/MarioMaker2OCR/network/dependencies

Troubleshooting

  • See list of known issues.
  • Must have Windows Media Player installed. This is not installed by default in Windows "N" or "KN" versions. (issue 57)

Contribution

  • dram55 - Original OCR program to read level info to a file.
  • zi - (zi#7981 on discord) - Added preview window, websocket/http server broadcasting for all events, warp bar style html page, and various fixes/performance improvements.

About

Capture level information & events from a Mario Maker 2 game feed and display on a locally hosted web app.


Languages

Language:C# 75.3%Language:JavaScript 11.0%Language:CSS 7.2%Language:HTML 6.2%Language:Python 0.3%