Skip to content
Snippets Groups Projects
Unverified Commit 3858d7c2 authored by dnns01's avatar dnns01 Committed by GitHub
Browse files

Project Elm Street (#120)


* Create, Join and start a group, handle players and check, if a player can join or is already part of an existing group

* Add Epilog message, and confirmation of people who would like to join

* disable start-button after start

* nur Owner kann auf Start klicken

* check if already member of THIS group in on_join

* check if already playing in ANY group in on_join and start-group

* Send DM to rejected user

* only owner can accept or reject players

* ViewManager for Elmstreet (#122)

* buttons for elmstreet

* fix import

* allow custom-fields in dialog-embed

* show courage of joining player in dialog

* check if player has enough courage to play

* increase courage every 5min and edit all corresponding messages

* allow only a single request per group

* add leaderboard for elm street

* get_stop_view to add stop-button to any message

* allow start-group ONLY in #elm-street

* show group-stats in elm-street

* show group-stats in Threads

* possible to cancel a group instead of starting

* final message in thread before archive

* Add / change texts

* Play story based on json file

* Calculate change in sweets and courage and output that change.

* Add fear event

* apply_sweets_and_courage now applies sweets and courage to group

* Only groupowner can press buttons

* count group-stats

* apply sweets after finishing the round

* show personal stats

* increase courage only if player is not actually playing

* typo removal & minor text changes

* create and delete voice channels

* Fixed fString

* Added next to story handling

* Randomisierung!

tested: it works

* Fix error when getting user id from embed

* Fix getting user from embed... again

* delete messages with buttons after one of them was clicked.

* fix request only once per group

* change "Beenden" to "Beendet" in stop-view

* change how story messages are shown

* change how story messages are shown

* Fix typo

* add possibility to leave group via button or slash-command

* Fix mention in Start journey message

* fix permissions on voice channels and add leaderboard below stats after round finished

* fix leaderboard being sent to wrong channel

* Fall 0 und Negativ Süßigkeiten abgedeckt

* doors can now only be visited once

* group can only be started or joined, if courage is 50 or higher, open join requests get denied when round is started

* stats command in all channels available (sent as ephemeral, so no problem.

* Fix leaderboard beeing sent at the end of a round

* Fix view manager

* Turn off elm street

Co-authored-by: default avatarsamari-k <safi.kuehn@gmx.de>
Co-authored-by: default avatarFabian <75286597+ffaadd@users.noreply.github.com>
Co-authored-by: default avatarffaadd <me@ffaadd.xyz>
Co-authored-by: default avatarLMzK <73669620+L-MzK@users.noreply.github.com>
parent 4c658916
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ DISCORD_ACTIVITY=<What should be shown, Bot is playing right now>
DISCORD_GITHUB_USER=<Github username used to create issues>
DISCORD_GITHUB_TOKEN=<Github personal access token, can be created in Settings > Developer settings > Personal access tokens (repo scope neccessary)>
DISCORD_GITHUB_ISSUE_URL=<URL of Github API to create Issues in a repo>
DISCORD_PROD=<True, if running in an productive environment, otherwise False>
# IDs
DISCORD_OWNER=<ID of Server owner>
......@@ -35,6 +36,8 @@ DISCORD_IDEE_CHANNEL=<ID of Channel, where bot ideas can be submitted>
DISCORD_IDEE_EMOJI=<ID of Idee Emoji, used for reactions>
DISCORD_CALMDOWN_ROLE=<ID of "Calmdown" role>
DISCORD_BOTUEBUNGSPLATZ_CHANNEL=<ID of 'bot-übungsplatz' channel>
DISCORD_ELM_STREET_CHANNEL=<ID of elm street channel>
DISCORD_HALLOWEEN_CATEGORY=<ID of Halloween category>
# JSON Files
DISCORD_ROLES_FILE=<File name for roles JSON file>
......
This diff is collapsed.
......@@ -6,7 +6,7 @@ from dotenv import load_dotenv
from cogs import appointments, calmdown, christmas, easter, github, help, learninggroups, links, \
news, polls, roles, support, text_commands, voice, welcome, xkcd, module_information
# , timer
from view_manager import ViewManager
# .env file is necessary in the same directory, that contains several strings.
load_dotenv()
......@@ -16,17 +16,15 @@ ACTIVITY = os.getenv('DISCORD_ACTIVITY')
OWNER = int(os.getenv('DISCORD_OWNER'))
ROLES_FILE = os.getenv('DISCORD_ROLES_FILE')
HELP_FILE = os.getenv('DISCORD_HELP_FILE')
CATEGORY_LERNGRUPPEN = os.getenv("DISCORD_CATEGORY_LERNGRUPPEN")
CATEGORY_LERNGRUPPEN = int(os.getenv("DISCORD_CATEGORY_LERNGRUPPEN"))
PIN_EMOJI = "📌"
intents = disnake.Intents.default()
intents.members = True
class Boty(commands.Bot):
def __init__(self):
super().__init__(command_prefix='!', help_command=None, activity=disnake.Game(ACTIVITY), owner_id=OWNER,
intents=intents)
intents=disnake.Intents.all())
self.view_manager = ViewManager(self)
self.add_cog(appointments.Appointments(self))
self.add_cog(text_commands.TextCommands(self))
self.add_cog(polls.Polls(self))
......@@ -45,7 +43,13 @@ class Boty(commands.Bot):
self.add_cog(calmdown.Calmdown(self))
self.add_cog(github.Github(self))
# self.add_cog(timer.Timer(self))
# self.add_cog(elm_street.ElmStreet(self))
def is_prod(self):
return os.getenv("DISCORD_PROD") == "True"
async def on_ready(self):
self.view_manager.on_ready()
print("Client started!")
bot = Boty()
......@@ -81,9 +85,9 @@ async def unpin_message(message):
await message.unpin()
@bot.event
async def on_ready():
print("Client started!")
# @bot.event
# async def on_ready():
# print("Client started!")
@bot.event
......
import json
import uuid
import disnake
from views.dialog_view import DialogView
class ViewManager:
def __init__(self, bot):
self.bot = bot
self.views = {}
self.functions = {}
self.load()
def on_ready(self):
for view_id in self.views:
try:
view = self.build_view(view_id)
self.bot.add_view(view)
except:
pass
def save(self):
with open("data/views.json", "w") as file:
json.dump(self.views, file)
def load(self):
with open("data/views.json", "r") as file:
self.views = json.load(file)
def register(self, key, func):
self.functions[key] = func
async def confirm(self, channel, title, description, custom_prefix, message="", fields=[], callback_key: str = None):
return await self.dialog(
channel=channel,
title=title,
description=description,
message=message,
fields=fields,
callback_key=callback_key,
buttons=[
{"emoji": "👍", "custom_id": f"{custom_prefix}_confirm_yes", "value": True},
{"emoji": "👎", "custom_id": f"{custom_prefix}_confirm_no", "value": False}
]
)
async def dialog(self, channel, title, description, message="", fields=[], buttons=None, callback_key: str = None):
embed = disnake.Embed(title=title,
description=description,
color=19607)
for field in fields:
embed.add_field(**field)
return await channel.send(message, embed=embed, view=self.view(buttons, callback_key))
def view(self, buttons=None, callback_key: str = None):
if buttons is None:
buttons = []
view_id = str(uuid.uuid4())
self.prepare_buttons(buttons, view_id)
view_config = {"buttons": buttons, "callback_key": callback_key}
self.views[view_id] = view_config
self.save()
return self.build_view(view_id)
def build_view(self, view_id):
view_config = self.views[view_id]
callback_key = view_config["callback_key"]
func = self.functions[callback_key]
return DialogView(self.views[view_id]["buttons"], func)
def add_button(self, config):
pass
def prepare_buttons(self, buttons, view_id=None):
for config in buttons:
config["custom_id"] = config.get("custom_id", "") + ("" if not view_id else "_" + str(view_id))
import disnake
from disnake import ButtonStyle
from disnake import ButtonStyle
class DialogView(disnake.ui.View):
def __init__(self, buttons=None, callback=None):
super().__init__(timeout=None)
self.callback = callback
......@@ -26,5 +28,5 @@ class DialogView(disnake.ui.View):
def internal_callback(self, button):
async def button_callback(interaction):
await self.callback(button, interaction, value=button.value)
return button_callback
return button_callback
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment