A Godot Engine app to help streamers organize Majority Judgment polls in their streams.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Dominique Merle 95c689a04f
docs
4 years ago
addons docs 4 years ago
android chore: add the android build godot version 4 years ago
core fix: ResourceLoader can't cast to MajorityJudgmentPoll 4 years ago
gui feat: save the ongoing poll on each judgment received 4 years ago
script_templates docs: add a snippet for WAT test files 4 years ago
sprites design: add a boot splash 4 years ago
tests feat: sanitize participants' names (identifiers) 4 years ago
.gitignore chore(git): ignore the builds/ directory 4 years ago
README.md docs: review the README 4 years ago
default_env.tres feat: add a default environment 4 years ago
export_presets.cfg feat(export): add presets for Mac OSX 4 years ago
icon.png design: add an icon 4 years ago
icon.png.import design: add an icon 4 years ago
project.godot design: add a boot splash 4 years ago

README.md

Join the Discord chat at https://discord.gg/rAAQG9S
License: MIT

Majority Judgment Polling (for Streamers)

Organize a majority judgment poll in a few seconds (as low as 0.5s, by hitting Enter twice), and let your community vote on it through one of the providers, like your Twitch Chat, using commands such as A2 B1 C4.

A short demo of the application

Just for streamers?

No. The app can be exported for Android, and you can set up polls on your smartphone. Any participant can vote by sending you SMSes with commands of the form: A3 B5 C0. The app has to stay alive to keep receiving SMSes, for now (see Issue #8), so best keep it in focus for the duration of the poll.

Overview

This is a distributable project made with Godot Game Engine, and there is no server-side to this application. All the data is held by the streamer, on their computer, whether they're using a binary executable or the web application on itch.io.

By design, the ballots are open, which may be unsuitable for politics, but it will allow us to enable delegation features, and we find that exciting!

Perhaps there is a way to make the ballots more secret (using whispers, a Twitch js overlay or some other trick).

Disclaimer

The project is in a PRIVATE ALPHA stage. It works, but it needs further testing on different machines before it can be considered stable.

Please consider becoming a tester, we need YOU!

We're looking for streamers willing to test it out and help us improve the software by making it crash in a number of interesting ways.

Open an issue in our tracker, or join us on Discord.

Chat Commands

Vote Chat Commands are in the form:

<CandidateLetter><GradeValue>

Letters start with A (duh), and each candidate gets attributed a different letter when they are added to the poll.

Grades start at 0, and their meaning is as follows:

  1. TO REJECT
  2. POOR
  3. PASSABLE
  4. GOOD
  5. VERY GOOD
  6. EXCELLENT

This is an example of meaning for 6 grades. We will support different gradings in the future.

Valid Examples:

  • A2 B0 C5
  • A2B0C5
  • a4B1 c5

Grade capping

Grades are capped to the maximum grade, so A1337 is understood as A5.

Add a new provider

  1. Extend MajorityJudgmentAbstractProvider.
  2. Register it in App.gd.
  3. Add its toggle to the SettingsForm scene.

Missing Features

  • Delegation (#10 work in progress)
  • More providers (Youtube live, Peertube live, IRC, CSV file, etc.)
  • Save/Load polls (#2)
  • Resilience to scale (Poll tallier may be vastly improved)
  • Option to enable/disable logs
  • Allow candidates to be added by the Chat (#11)

LICENSE

This is libre software.

MIT