ideas: added some

This commit is contained in:
Logen Kain 2017-04-20 18:28:30 -07:00
parent 76c37e3741
commit 0af466d2a9
2 changed files with 42 additions and 0 deletions

23
ideas/concept.txt Normal file
View File

@ -0,0 +1,23 @@
What if I have static representations of a character, and have mutable modifers to that static state.
i.e.
struct {
int x,
int y,
int health,
}monster
monster goblin;
goblin.x = 5;
goblin.y = 5;
goblin.health = 45;
int goblin.health.mod;
goblin.health.mod = -5 (took dmg);
current_goblin_health = goblin.health + goblin.health.mod
something like that...

19
ideas/loser_idea.txt Normal file
View File

@ -0,0 +1,19 @@
A replacement for podbeuter.
Write in ncurses with rust.
Have a hotkey to flag for delete. Also have undelete key
Have a hotkey that will open up the URLS file in an editor set in the config file
have a help of course
config file
Can set editor
Can set default video/audio player
-- Have a hot key that allows to use a non-default player
Have list of hot key setable here (let's keep it easy, at least at first, it'll just be the actual variables to be loaded in)
Allow to choose which episode to start from
Remember where we left off in the episode list (how do they do that?)
If possible, add some sort of resume feature.
Add YTPDL support.
Bassically it'll work the same way, but it will only create the update file, not run it.
Can we queue videos somehow? Just pull playlist information and make it look like the rest of the program?