Closed Krushchevawn closed 9 years ago
I can do this in my fork if you would like to assign me @aidraj .
Go ahead ynohtna92. I wrote up a class for handling/drawing the bar already before, don't think I kept a backup of it. I'm not a big fan of the anarchy/democracy mode.
Will the Anarchy and Dempcracy thing be ready anytime soon? No rush. Id just really like to have it. Im interested in it for my streams!
Soon^tm.
Expect to see it to see it latest 24 hours from now. I'll try to work on it today if I have some time.
Almost done. Just need to put on those silly arrows
Don't mind the positioning, Just testing now.
Is it possible you can show me to set the chat up and stuff just like that. Im just using screen regions for my stuff right now and its all over the place.
Something like that, obviously it needs more tuning to make it fit right.
Anyway you could help me with something like this?
Not trying to be demanding or anything. id just like some help since im gonna use the anarchy and democracy i have no place to put it. So thats why i was asking if you couls help me set something up like this. So i can actually have room to place it.
https://github.com/ynohtna92/twitch-plays/commit/70cf65b5d0f00132955e4d2460d5e61f9d25cf7b
Updated my fork. It should fit nicely in a 16:9 broadcast window along side the square pokemon window.
Hello ynohtna92, Sry for my english I can not launch twitchplays.py on your repo :
Traceback (most recent call last):
File "C:\Users\Polzy\Desktop\twitch-plays-master\TwitchPlays.py", line 12, in
How to install IRC Client and Tornado for Windows ?
Download each dependency.
Unzip the the folder and find the setup file.
Locate this directory in cmd and run the command 'python setup.py install'. (python should be where your installation is, so for example I would run 'C:/Python27/python.exe setup.py install')
Do this for each dependency.
I have it all installed but its really messed up it seems it shows this on the web interface and has errors!
Oh forgot to add file references.. sorry I'll fix it now.
https://github.com/ynohtna92/twitch-plays/commit/4419a2b4914942697535803e61b97ba2e7ba32d9
Try again with this. It may still give a favicon warning but don't worry about it.
Well it worked. but now how do i get the time to start from 0?
In the file "lib/template/index.html" on line 190.
var start = new Date(1392947369 * 1000);
Change the 1392947369 to your starting epoch time stamp. You can make one here http://www.epochconverter.com/. I'll eventually add in a better way to do this.
How would i go about adjusting the web socket to look appropriate on the stream because right now it has the browser border around it and stuff and i dont know how to remove that. How would you go about doing that?
You have to use the sub region setting. You can get to this by right clicking on the source and selecting property. Then enable sub regions and click the 'Select Region' Button to create a window around the black box. After that is done you can resize to your liking using Edit Scene in OBS.
Okay and with the democracy and anarchy how many times would one have to say it before it goes to democracy i said democracy twice but Anarchy is still highlighted?
Change the config anarchy-democracy setting to a smaller number (50 perhaps). It always start in anarchy mode. The bar will move 1 point left or right depending on what is said, so it will take 16 democracy votes to change it with a size of 50 from starting the program.
You will also have to remove the '500 #' on line 40 of the bot.py file. I forgot to commit that change.
Hello, I can not install the dependencies, can you help me?
Are you using pip and virtualenv?
Ok I found pip and i installed all programs :) Thanks ! (Sorry for my english)
Good to see you got it installed. You don't need virtualenv, but it's a great tool to use with python in case you plan on installing multiple versions of python or multiple versions of libraries.
Technically, pip should be all you need to get twitch-plays working, so if you're not interested in learning virtualenv now, that is alright.
@ynohtna92, not sure how to contact you, but: I currently am using aidraj's TPP clone and I stumbled upon this page (for the modes). How can I add the feature where if someone types any of the directional commands (up, down, etc) it shows a tiny arrow to the direction they typed in the chat?
There are a couple of ways you could do this but the quickest would be just changing https://github.com/ynohtna92/twitch-plays/blob/master/lib/template/index.html#L293-310 so if the string is equal to up,down,left,right it will return a html tagged image with the corresponding arrow.
I'm familiar with some coding stuff, but how would I change those lines to make it point to an image? I know the basic HTML tags or whatever, but not sure where exactly to change stuff in those lines. Big help, though, and hopefully you could answer this question as well :) Also, how would I integrate that template into sunshinekitty's TPP clone?: https://github.com/sunshinekitty/TwitchPlaysPokemon/tree/master/TwitchPlaysBot Her/His clone is the only one I've actually been able to get working for me. Thanks!
On Sun, May 17, 2015 at 1:24 AM, ynohtna92 notifications@github.com wrote:
There are a couple of ways you could do this but the quickest would be just changing https://github.com/ynohtna92/twitch-plays/blob/master/lib/template/index.html#L293-310 so if the string is equal to up,down,left,right it will return a html tagged image with the corresponding arrow.
— Reply to this email directly or view it on GitHub https://github.com/aidraj/twitch-plays/issues/4#issuecomment-102749494.
-Branden-
function formatOutput(left, right){
var buffer_size = 20;
var buffer_used = 0;
var whitespace_size = 1;
var img = "";
if (left == "down"){
left = " " // Clear instruction
img = '<img src="downarrow.png" height="16" width="16">'
}
buffer_used = right.toString().length + whitespace_size;
var buffer_left = buffer_size - buffer_used;
if (buffer_left > left.length) {
whitespace_size += buffer_left - left.length;
}
var left_end = buffer_left;
left = left.substring(0, left_end);
return img + left + Array(whitespace_size + 1).join(" ") + right;
};
Would be what the function turns into. Note this is untested.
As for sunshines clone, i have no idea. Mine should work as long as you have configured it correctly and you have the required dependencies installed.
For some reason, I kept getting this error with yours. Picture attached. (Sent from e-mail)
Sent from my iPhone
On May 17, 2015, at 4:14 AM, ynohtna92 notifications@github.com wrote:
function formatOutput(left, right){ var buffer_size = 20; var buffer_used = 0; var whitespace_size = 1; var img = "";
if (left == "down"){ left = " " // Clear instruction img = '' }
buffer_used = right.toString().length + whitespace_size; var buffer_left = buffer_size - buffer_used; if (buffer_left > left.length) { whitespace_size += buffer_left - left.length; } var left_end = buffer_left; left = left.substring(0, left_end); return img + left + Array(whitespace_size + 1).join(" ") + right; }; Would be what the function turns into. Note this is untested.
As for sunshines clone, i have no idea. Mine should work as long as you have configured it correctly and you have the required dependencies installed.
— Reply to this email directly or view it on GitHub.
left = " " // Clear instruction
img = '<img src="downarrow.png" height="16" width="16">'
Opps these lines should be
left = " "; // Clear instruction
img = '<img src="downarrow.png" height="16" width="16">';
But yeah you will need to actually add in the image so it can be referenced.
And what errors are you getting you didn't submit any photo.
I cannot get your bot to start, though. Whenever I type "twitchplays.py" to start it, I get this:
EDIT: Also, would I just copy & paste the code below four times for each direction icon?
Code: if (left == "down"){ left = " "; // Clear instruction img = ''; }
Yes you would copy it 4 times obviously changing the text and img src.
You haven't installed the dependancies my fork requires. Please do these steps.
Dependencies
No, i did download the dependencies. I just put them all in the same folder, but still the same error message. As you can see, I moved the stuff from /lib folder to the main one, but either way, whether the scrips are in the lib folder or not, still the same error....Do I need to do anything with the IRC & Tornado downloads? I looked at the settings/config files, but didn't really see anything.
That is not how you install python dependencies. Please read the install instructions for each of those dependencies.
When installed correctly you should be able to do the following in the python interpreter without any errors.
For the IRC install, I'm getting this:
https://pypi.python.org/pypi/irc/8.5.4 Download this version as it is the one I used.
Not sure why it keeps saying the setup tools are too old.
You are not giving the install script a command. It should be 'setup.py install' As for the setuptools error, i cannot help with that.
That "setup.py install" was all I needed. Installed them both perfectly :+1:
Alright....so, I got everything running perfectly. I do, however, have a question on something: When a directional command (up, down, etc.) is entered, the arrows still do not show. And nothing shows up when I CTRL+O that "indexhtml" file in the /template folder. How can I have the arrows show when a direction is commanded? I currently just have a Window Capture set up on my CMD terminal where the commands come through for my stream. Thanks! Oh, & here's how I have the code (starting at line 293 on index file): EDIT: lol @ my image links getting turned to the actual arrows.
function formatOutput(left, right){
var buffer_size = 20;
var buffer_used = 0;
var whitespace_size = 1;
var img = "";
if (left == "down"){ left = " "; // Clear instruction img = ''; }
if (left == "left"){
left = " "; // Clear instruction img = ''; }
if (left == "right"){
left = " "; // Clear instruction img = ''; }
if (left == "up"){
left = " "; // Clear instruction img = ''; }
What shows instead?
The regular full name of the direction.
Sent from my iPhone
On May 17, 2015, at 11:01 PM, ynohtna92 notifications@github.com wrote:
What shows instead?
— Reply to this email directly or view it on GitHub.
Did you read the instructions? You have to go to http://127.0.0.1:8888 for the UI. The command prompt will only display text.
I mean, yeah, I did that, but it was showing like 400 days on the timer or something. I'll try it again And I know the CMD Prompt will only display text, but I didn't know if it got converted to show the image on something...idk what I was thinking :p
EDIT: That IP URL is giving me an error page, which is odd, since I was on it earlier.
I also have a request for this: Could you somehow make it so people can enter commands such as: up3, down2, left6, etc.? Where the number is how many times it'll be pressed.
The start time on the timer is hardcoded into index.html, please read above as I have explained how to change it.
The page will give you an error if the python script has been closed, so it has to stay open.
Make a request by starting a new issue, but i'm sure aijraj is no longer working on this and neither am I. Sorry but if you want any features you will have to add them yourself, the project is opensource for a reason.
Alright, will do. Thank-you.
Hm... Ok, so I got the http://127.0.0.1:8888 page open...but when I enter a command, it doesn't show up on that page at all.
Is there Any plan to add anarchy/democracy slider or do you have any idea how to add the anarchy/democracy slider?