mirror of
				https://github.com/DerTyp7/obs-twitch-camera-frame.git
				synced 2025-10-31 13:47:12 +01:00 
			
		
		
		
	Compare commits
	
		
			21 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 2ff402a320 | ||
|   | afacb9b93b | ||
|   | 271a7bc936 | ||
|   | 63f113ec0b | ||
|   | 53555aad6a | ||
|   | a4f9697b6c | ||
|   | c0d72b8e43 | ||
|   | 80ea3c297e | ||
|   | c5e597ef58 | ||
|   | 5dd6bbf290 | ||
|   | a45f99ecd3 | ||
|   | 14079a997e | ||
|   | 23044c320d | ||
|   | ae6d3f0ebf | ||
|   | 832aa9beb0 | ||
|   | 7bb209a8d6 | ||
|   | 85501820f1 | ||
|   | b12a9742f1 | ||
|   | 9de4c7fc03 | ||
|   | d198699844 | ||
|   | b5889e7b0a | 
							
								
								
									
										0
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
								
								
									
										31
									
								
								config.js
									
									
									
									
									
								
							
							
						
						
									
										31
									
								
								config.js
									
									
									
									
									
								
							| @@ -1,3 +1,32 @@ | ||||
| const CONFIG = { | ||||
| 	apiKey: "1e8d3bcbc24f95e64672521ccdcf6020e2d64d30", | ||||
| 	apiKey: "", | ||||
| 	twitch: { | ||||
| 		username: "", | ||||
| 		oAuth: "", | ||||
| 		clientId: "", | ||||
| 		rewardIds: { | ||||
| 			turnRed: "", | ||||
| 			turnGreen: "", | ||||
| 			turnPurple: "", | ||||
| 			turnBlue: "", | ||||
| 		}, | ||||
| 	}, | ||||
| 	themes: { | ||||
| 		red: { | ||||
| 			0: "rgb(79, 6, 6)", | ||||
| 			1: "rgb(247, 52, 52)", | ||||
| 		}, | ||||
| 		green: { | ||||
| 			0: "rgb(11, 69, 22)", | ||||
| 			1: "rgb(88, 252, 170)", | ||||
| 		}, | ||||
| 		purple: { | ||||
| 			0: "rgb(62, 7, 66)", | ||||
| 			1: "rgb(188, 79, 240)", | ||||
| 		}, | ||||
| 		blue: { | ||||
| 			0: "rgb(17, 11, 125)", | ||||
| 			1: "rgb(61, 223, 255)", | ||||
| 		}, | ||||
| 	}, | ||||
| }; | ||||
|   | ||||
| @@ -1,13 +1,5 @@ | ||||
| @keyframes subAnimation { | ||||
| 	0% { | ||||
| 		border-image: linear-gradient( | ||||
| 				to top, | ||||
| 				var(--border-color-1), | ||||
| 				var(--border-color-2) | ||||
| 			) | ||||
| 			1; | ||||
| 	} | ||||
| 	10% { | ||||
| 		border-image: linear-gradient( | ||||
| 				to top, | ||||
| 				var(--border-color-flash-1), | ||||
| @@ -23,7 +15,7 @@ | ||||
| 			) | ||||
| 			1; | ||||
| 	} | ||||
| 	80% { | ||||
| 	100% { | ||||
| 		border-image: linear-gradient( | ||||
| 				to top, | ||||
| 				var(--border-color-flash-1), | ||||
| @@ -31,14 +23,6 @@ | ||||
| 			) | ||||
| 			1; | ||||
| 	} | ||||
| 	100% { | ||||
| 		border-image: linear-gradient( | ||||
| 				to top, | ||||
| 				var(--border-color-2), | ||||
| 				var(--border-color-1) | ||||
| 			) | ||||
| 			1; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @keyframes borderAnimation { | ||||
| @@ -82,18 +66,21 @@ | ||||
|  | ||||
| @keyframes backgroundSubAnimation { | ||||
| 	0% { | ||||
| 		background: var(--border-color-1); | ||||
| 	} | ||||
| 	10% { | ||||
| 		background: var(--border-color-flash-1); | ||||
| 	} | ||||
| 	50% { | ||||
| 		background: var(--border-color-flash-2); | ||||
| 	} | ||||
| 	80% { | ||||
| 	100% { | ||||
| 		background: var(--border-color-flash-1); | ||||
| 	} | ||||
| 	100% { | ||||
| 		background: var(--border-color-2); | ||||
| } | ||||
|  | ||||
| @keyframes tfBannerAnimation { | ||||
| 	from { | ||||
| 		margin-top: -200px; | ||||
| 	} | ||||
| 	to { | ||||
| 		margin-top: 0px; | ||||
| 	} | ||||
| } | ||||
|   | ||||
| @@ -55,3 +55,34 @@ html { | ||||
| 	animation-duration: 20s; | ||||
| 	animation-name: backgroundAnimation; | ||||
| } | ||||
|  | ||||
| #tealfire-banner { | ||||
| 	height: 50px; | ||||
| 	width: 180px; | ||||
| 	padding: 20px; | ||||
| 	margin-top: -200px; | ||||
| 	z-index: 1; | ||||
| 	animation-timing-function: linear; | ||||
| 	float: right; | ||||
| } | ||||
|  | ||||
| #tealfire-banner p { | ||||
| 	color: teal; | ||||
| 	float: left; | ||||
| 	font-size: 23pt; | ||||
| 	font-weight: bolder; | ||||
| 	padding-top: 8px; | ||||
| 	padding-left: 5px; | ||||
| 	z-index: 5; | ||||
| } | ||||
| #tealfire-banner img { | ||||
| 	color: teal; | ||||
| 	height: 50px; | ||||
| 	float: left; | ||||
| } | ||||
|  | ||||
| #tealfire-banner .particles-js-canvas-el { | ||||
| 	margin-top: -60px; | ||||
| 	padding-bottom: 10px; | ||||
| 	z-index: 0; | ||||
| } | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| :root { | ||||
| 	--border-color-1: rgb(139, 0, 0); | ||||
| 	--border-color-2: rgb(255, 74, 74); | ||||
| 	--border-color-1: rgb(113, 0, 0); | ||||
| 	--border-color-2: rgb(235, 19, 19); | ||||
|  | ||||
| 	--border-color-flash-1: rgb(220, 32, 15); | ||||
| 	--border-color-flash-2: rgb(210, 220, 15); | ||||
| 	--border-color-flash-1: rgb(255, 27, 6); | ||||
| 	--border-color-flash-2: rgb(208, 218, 20); | ||||
| } | ||||
|   | ||||
							
								
								
									
										10
									
								
								frame.html
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								frame.html
									
									
									
									
									
								
							| @@ -11,9 +11,17 @@ | ||||
| 	</head> | ||||
| 	<body> | ||||
| 		<div id="frame"></div> | ||||
| 		<div id="tealfire-banner"> | ||||
| 			<img src="img/logo128x128.png" alt="" /> | ||||
| 			<p>TealFire</p> | ||||
| 		</div> | ||||
| 		<div id="subCount">0</div> | ||||
| 		<div id="particles-frame"></div> | ||||
|  | ||||
| 		<script src="config.js"></script> | ||||
| 		<script src="js/socket.io.min.js"></script> | ||||
| 		<script src="js/modules/socket.io.min.js"></script> | ||||
| 		<script src="js/modules/particles/particles.js"></script> | ||||
| 		<script src="js/pubsub.js"></script> | ||||
| 		<script src="js/app.js"></script> | ||||
| 		<script src="js/socket.js"></script> | ||||
| 	</body> | ||||
|   | ||||
							
								
								
									
										
											BIN
										
									
								
								img/logo128x128.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								img/logo128x128.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 7.7 KiB | 
							
								
								
									
										38
									
								
								js/app.js
									
									
									
									
									
								
							
							
						
						
									
										38
									
								
								js/app.js
									
									
									
									
									
								
							| @@ -1,5 +1,6 @@ | ||||
| const subCount = document.getElementById("subCount"); | ||||
| const frame = document.getElementById("frame"); | ||||
| const tfBanner = document.getElementById("tealfire-banner"); | ||||
|  | ||||
| let subCountNumber = 0; | ||||
|  | ||||
| @@ -15,6 +16,8 @@ function updateSubCount() { | ||||
| } | ||||
|  | ||||
| function sub(subName) { | ||||
| 	particlesJS.load("particles-frame", "js/particles-sub.json"); | ||||
|  | ||||
| 	frame.style.animationName = "subAnimation"; | ||||
| 	frame.style.animationDuration = "2s"; | ||||
|  | ||||
| @@ -31,6 +34,39 @@ function sub(subName) { | ||||
| 		subCount.style.animationDuration = "20s"; | ||||
| 		subCount.innerText = subCountNumber; | ||||
| 		updateSubCount(); | ||||
| 	}, 2000); | ||||
| 		particlesJS.load("particles-frame", "js/particles-none.json"); | ||||
| 	}, 11000); | ||||
| } | ||||
|  | ||||
| function showTealFireBanner() { | ||||
| 	tfBanner.style.animationName = "tfBannerAnimation"; | ||||
| 	tfBanner.style.animationDuration = "3s"; | ||||
| 	tfBanner.style.animationDirection = "normal"; | ||||
| 	setTimeout(() => { | ||||
| 		tfBanner.style.marginTop = "0px"; | ||||
| 		tfBanner.style.animationName = ""; | ||||
| 		tfBanner.style.animationDuration = ""; | ||||
| 	}, 3000); | ||||
| } | ||||
|  | ||||
| function closeTealFireBanner() { | ||||
| 	tfBanner.style.animationName = "tfBannerAnimation"; | ||||
| 	tfBanner.style.animationDuration = "3s"; | ||||
| 	tfBanner.style.animationDirection = "reverse"; | ||||
|  | ||||
| 	setTimeout(() => { | ||||
| 		tfBanner.style.marginTop = "-200px"; | ||||
| 		tfBanner.style.animationName = ""; | ||||
| 		tfBanner.style.animationDuration = ""; | ||||
| 	}, 3000); | ||||
| } | ||||
|  | ||||
| setInterval(() => { | ||||
| 	showTealFireBanner(); | ||||
| 	setTimeout(() => { | ||||
| 		closeTealFireBanner(); | ||||
| 	}, 20000); //20000 | ||||
| }, 300000); // 300000 | ||||
| updateSubCount(); | ||||
|  | ||||
| particlesJS.load("tealfire-banner", "js/particles-banner.json"); | ||||
|   | ||||
							
								
								
									
										22
									
								
								js/modules/particles/bower.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								js/modules/particles/bower.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| { | ||||
|   "name": "particles.js", | ||||
|   "main": "particles.js", | ||||
|   "version": "2.0.0", | ||||
|   "homepage": "https://github.com/VincentGarreau/particles.js", | ||||
|   "authors": [ | ||||
|     "Vincent Garreau <vin.garreau@gmail.com>" | ||||
|   ], | ||||
|   "description": "A lightweight JavaScript library for creating particles.", | ||||
|   "keywords": [ | ||||
|     "particle", | ||||
|     "particles" | ||||
|   ], | ||||
|   "license": "MIT", | ||||
|   "ignore": [ | ||||
|     "**/.*", | ||||
|     "node_modules", | ||||
|     "bower_components", | ||||
|     "test", | ||||
|     "tests" | ||||
|   ] | ||||
| } | ||||
							
								
								
									
										28
									
								
								js/modules/particles/package.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								js/modules/particles/package.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,28 @@ | ||||
| { | ||||
|   "name": "particles.js", | ||||
|   "version": "2.0.0", | ||||
|   "description": "A lightweight JavaScript library for creating particles", | ||||
|   "homepage": "http://vincentgarreau.com/particles.js", | ||||
|   "scripts": { | ||||
|     "test": "echo \"Error: no test specified\" && exit 1" | ||||
|   }, | ||||
|   "repository": { | ||||
|     "type": "git", | ||||
|     "url": "https://github.com/VincentGarreau/particles.js.git" | ||||
|   }, | ||||
|   "keywords": [ | ||||
|     "particles", | ||||
|     "particle", | ||||
|     "canvas" | ||||
|   ], | ||||
|   "author": "Vincent Garreau", | ||||
|   "license": "MIT", | ||||
|   "files": [ | ||||
|     "particles.js", | ||||
|     "particles.min.js" | ||||
|   ], | ||||
|   "bugs": { | ||||
|     "url": "https://github.com/VincentGarreau/particles.js/issues" | ||||
|   }, | ||||
|   "homepage": "https://github.com/VincentGarreau/particles.js" | ||||
| } | ||||
							
								
								
									
										1541
									
								
								js/modules/particles/particles.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1541
									
								
								js/modules/particles/particles.js
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										9
									
								
								js/modules/particles/particles.min.js
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								js/modules/particles/particles.min.js
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										110
									
								
								js/particles-banner.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										110
									
								
								js/particles-banner.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,110 @@ | ||||
| { | ||||
| 	"particles": { | ||||
| 		"number": { | ||||
| 			"value": 400, | ||||
| 			"density": { | ||||
| 				"enable": true, | ||||
| 				"value_area": 100 | ||||
| 			} | ||||
| 		}, | ||||
| 		"color": { | ||||
| 			"value": "#00d680" | ||||
| 		}, | ||||
| 		"shape": { | ||||
| 			"type": "circle", | ||||
| 			"stroke": { | ||||
| 				"width": 0, | ||||
| 				"color": "#000000" | ||||
| 			}, | ||||
| 			"polygon": { | ||||
| 				"nb_sides": 5 | ||||
| 			}, | ||||
| 			"image": { | ||||
| 				"src": "img/github.svg", | ||||
| 				"width": 100, | ||||
| 				"height": 100 | ||||
| 			} | ||||
| 		}, | ||||
| 		"opacity": { | ||||
| 			"value": 0.7, | ||||
| 			"random": true, | ||||
| 			"anim": { | ||||
| 				"enable": true, | ||||
| 				"speed": 1, | ||||
| 				"opacity_min": 0, | ||||
| 				"sync": false | ||||
| 			} | ||||
| 		}, | ||||
| 		"size": { | ||||
| 			"value": 2, | ||||
| 			"random": true, | ||||
| 			"anim": { | ||||
| 				"enable": false, | ||||
| 				"speed": 1, | ||||
| 				"size_min": 0.3, | ||||
| 				"sync": false | ||||
| 			} | ||||
| 		}, | ||||
| 		"line_linked": { | ||||
| 			"enable": false, | ||||
| 			"distance": 150, | ||||
| 			"color": "#d60e00", | ||||
| 			"opacity": 0.4, | ||||
| 			"width": 1 | ||||
| 		}, | ||||
| 		"move": { | ||||
| 			"enable": true, | ||||
| 			"speed": 0.3, | ||||
| 			"direction": "none", | ||||
| 			"random": true, | ||||
| 			"straight": false, | ||||
| 			"out_mode": "out", | ||||
| 			"bounce": false, | ||||
| 			"attract": { | ||||
| 				"enable": false, | ||||
| 				"rotateX": 600, | ||||
| 				"rotateY": 600 | ||||
| 			} | ||||
| 		} | ||||
| 	}, | ||||
| 	"interactivity": { | ||||
| 		"detect_on": "canvas", | ||||
| 		"events": { | ||||
| 			"onhover": { | ||||
| 				"enable": true, | ||||
| 				"mode": "bubble" | ||||
| 			}, | ||||
| 			"onclick": { | ||||
| 				"enable": true, | ||||
| 				"mode": "repulse" | ||||
| 			}, | ||||
| 			"resize": true | ||||
| 		}, | ||||
| 		"modes": { | ||||
| 			"grab": { | ||||
| 				"distance": 200, | ||||
| 				"line_linked": { | ||||
| 					"opacity": 1 | ||||
| 				} | ||||
| 			}, | ||||
| 			"bubble": { | ||||
| 				"distance": 10, | ||||
| 				"size": 0, | ||||
| 				"duration": 2, | ||||
| 				"opacity": 0, | ||||
| 				"speed": 1 | ||||
| 			}, | ||||
| 			"repulse": { | ||||
| 				"distance": 400, | ||||
| 				"duration": 0.4 | ||||
| 			}, | ||||
| 			"push": { | ||||
| 				"particles_nb": 2 | ||||
| 			}, | ||||
| 			"remove": { | ||||
| 				"particles_nb": 2 | ||||
| 			} | ||||
| 		} | ||||
| 	}, | ||||
| 	"retina_detect": true | ||||
| } | ||||
							
								
								
									
										110
									
								
								js/particles-none.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										110
									
								
								js/particles-none.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,110 @@ | ||||
| { | ||||
| 	"particles": { | ||||
| 		"number": { | ||||
| 			"value": 0, | ||||
| 			"density": { | ||||
| 				"enable": true, | ||||
| 				"value_area": 800 | ||||
| 			} | ||||
| 		}, | ||||
| 		"color": { | ||||
| 			"value": "#fff" | ||||
| 		}, | ||||
| 		"shape": { | ||||
| 			"type": "circle", | ||||
| 			"stroke": { | ||||
| 				"width": 0, | ||||
| 				"color": "#fff" | ||||
| 			}, | ||||
| 			"polygon": { | ||||
| 				"nb_sides": 5 | ||||
| 			}, | ||||
| 			"image": { | ||||
| 				"src": "img/github.svg", | ||||
| 				"width": 100, | ||||
| 				"height": 100 | ||||
| 			} | ||||
| 		}, | ||||
| 		"opacity": { | ||||
| 			"value": 0, | ||||
| 			"random": true, | ||||
| 			"anim": { | ||||
| 				"enable": true, | ||||
| 				"speed": 1, | ||||
| 				"opacity_min": 0, | ||||
| 				"sync": false | ||||
| 			} | ||||
| 		}, | ||||
| 		"size": { | ||||
| 			"value": 0, | ||||
| 			"random": true, | ||||
| 			"anim": { | ||||
| 				"enable": false, | ||||
| 				"speed": 4, | ||||
| 				"size_min": 0.3, | ||||
| 				"sync": false | ||||
| 			} | ||||
| 		}, | ||||
| 		"line_linked": { | ||||
| 			"enable": false, | ||||
| 			"distance": 150, | ||||
| 			"color": "#d60e00", | ||||
| 			"opacity": 0.4, | ||||
| 			"width": 1 | ||||
| 		}, | ||||
| 		"move": { | ||||
| 			"enable": true, | ||||
| 			"speed": 1, | ||||
| 			"direction": "none", | ||||
| 			"random": true, | ||||
| 			"straight": false, | ||||
| 			"out_mode": "out", | ||||
| 			"bounce": false, | ||||
| 			"attract": { | ||||
| 				"enable": false, | ||||
| 				"rotateX": 600, | ||||
| 				"rotateY": 600 | ||||
| 			} | ||||
| 		} | ||||
| 	}, | ||||
| 	"interactivity": { | ||||
| 		"detect_on": "canvas", | ||||
| 		"events": { | ||||
| 			"onhover": { | ||||
| 				"enable": true, | ||||
| 				"mode": "bubble" | ||||
| 			}, | ||||
| 			"onclick": { | ||||
| 				"enable": true, | ||||
| 				"mode": "repulse" | ||||
| 			}, | ||||
| 			"resize": true | ||||
| 		}, | ||||
| 		"modes": { | ||||
| 			"grab": { | ||||
| 				"distance": 400, | ||||
| 				"line_linked": { | ||||
| 					"opacity": 1 | ||||
| 				} | ||||
| 			}, | ||||
| 			"bubble": { | ||||
| 				"distance": 250, | ||||
| 				"size": 0, | ||||
| 				"duration": 2, | ||||
| 				"opacity": 0, | ||||
| 				"speed": 3 | ||||
| 			}, | ||||
| 			"repulse": { | ||||
| 				"distance": 400, | ||||
| 				"duration": 0.4 | ||||
| 			}, | ||||
| 			"push": { | ||||
| 				"particles_nb": 4 | ||||
| 			}, | ||||
| 			"remove": { | ||||
| 				"particles_nb": 2 | ||||
| 			} | ||||
| 		} | ||||
| 	}, | ||||
| 	"retina_detect": true | ||||
| } | ||||
							
								
								
									
										110
									
								
								js/particles-sub.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										110
									
								
								js/particles-sub.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,110 @@ | ||||
| { | ||||
| 	"particles": { | ||||
| 		"number": { | ||||
| 			"value": 200, | ||||
| 			"density": { | ||||
| 				"enable": true, | ||||
| 				"value_area": 800 | ||||
| 			} | ||||
| 		}, | ||||
| 		"color": { | ||||
| 			"value": "#d67d00" | ||||
| 		}, | ||||
| 		"shape": { | ||||
| 			"type": "circle", | ||||
| 			"stroke": { | ||||
| 				"width": 0, | ||||
| 				"color": "#000000" | ||||
| 			}, | ||||
| 			"polygon": { | ||||
| 				"nb_sides": 5 | ||||
| 			}, | ||||
| 			"image": { | ||||
| 				"src": "img/github.svg", | ||||
| 				"width": 100, | ||||
| 				"height": 100 | ||||
| 			} | ||||
| 		}, | ||||
| 		"opacity": { | ||||
| 			"value": 1, | ||||
| 			"random": true, | ||||
| 			"anim": { | ||||
| 				"enable": true, | ||||
| 				"speed": 2, | ||||
| 				"opacity_min": 0, | ||||
| 				"sync": false | ||||
| 			} | ||||
| 		}, | ||||
| 		"size": { | ||||
| 			"value": 3, | ||||
| 			"random": true, | ||||
| 			"anim": { | ||||
| 				"enable": false, | ||||
| 				"speed": 2, | ||||
| 				"size_min": 0.3, | ||||
| 				"sync": false | ||||
| 			} | ||||
| 		}, | ||||
| 		"line_linked": { | ||||
| 			"enable": false, | ||||
| 			"distance": 150, | ||||
| 			"color": "#d60e00", | ||||
| 			"opacity": 0.4, | ||||
| 			"width": 1 | ||||
| 		}, | ||||
| 		"move": { | ||||
| 			"enable": true, | ||||
| 			"speed": 2, | ||||
| 			"direction": "none", | ||||
| 			"random": true, | ||||
| 			"straight": false, | ||||
| 			"out_mode": "out", | ||||
| 			"bounce": false, | ||||
| 			"attract": { | ||||
| 				"enable": false, | ||||
| 				"rotateX": 600, | ||||
| 				"rotateY": 600 | ||||
| 			} | ||||
| 		} | ||||
| 	}, | ||||
| 	"interactivity": { | ||||
| 		"detect_on": "canvas", | ||||
| 		"events": { | ||||
| 			"onhover": { | ||||
| 				"enable": true, | ||||
| 				"mode": "bubble" | ||||
| 			}, | ||||
| 			"onclick": { | ||||
| 				"enable": true, | ||||
| 				"mode": "repulse" | ||||
| 			}, | ||||
| 			"resize": true | ||||
| 		}, | ||||
| 		"modes": { | ||||
| 			"grab": { | ||||
| 				"distance": 400, | ||||
| 				"line_linked": { | ||||
| 					"opacity": 1 | ||||
| 				} | ||||
| 			}, | ||||
| 			"bubble": { | ||||
| 				"distance": 250, | ||||
| 				"size": 0, | ||||
| 				"duration": 2, | ||||
| 				"opacity": 0, | ||||
| 				"speed": 3 | ||||
| 			}, | ||||
| 			"repulse": { | ||||
| 				"distance": 400, | ||||
| 				"duration": 0.4 | ||||
| 			}, | ||||
| 			"push": { | ||||
| 				"particles_nb": 4 | ||||
| 			}, | ||||
| 			"remove": { | ||||
| 				"particles_nb": 2 | ||||
| 			} | ||||
| 		} | ||||
| 	}, | ||||
| 	"retina_detect": true | ||||
| } | ||||
							
								
								
									
										107
									
								
								js/pubsub.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										107
									
								
								js/pubsub.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,107 @@ | ||||
| const rootElem = document.querySelector(":root"); | ||||
| let ws; | ||||
| let channelId; | ||||
|  | ||||
| function changeColorTheme(theme) { | ||||
| 	rootElem.style.setProperty("--border-color-1", theme[0]); | ||||
| 	rootElem.style.setProperty("--border-color-2", theme[1]); | ||||
| } | ||||
|  | ||||
| function pubSubNonce(length) { | ||||
| 	var text = ""; | ||||
| 	var possible = | ||||
| 		"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; | ||||
| 	for (var i = 0; i < length; i++) { | ||||
| 		text += possible.charAt(Math.floor(Math.random() * possible.length)); | ||||
| 	} | ||||
| 	return text; | ||||
| } | ||||
|  | ||||
| function pubSubHeartbeat() { | ||||
| 	message = { | ||||
| 		type: "PING", | ||||
| 	}; | ||||
| 	ws.send(JSON.stringify(message)); | ||||
| } | ||||
|  | ||||
| function pubSubListen(topic) { | ||||
| 	message = { | ||||
| 		type: "LISTEN", | ||||
| 		nonce: pubSubNonce(15), | ||||
| 		data: { | ||||
| 			topics: [topic], | ||||
| 			auth_token: CONFIG.twitch.oAuth, | ||||
| 		}, | ||||
| 	}; | ||||
| 	ws.send(JSON.stringify(message)); | ||||
| } | ||||
|  | ||||
| function pubSubConnect() { | ||||
| 	var heartbeatInterval = 1000 * 60; //ms between PING's | ||||
| 	var reconnectInterval = 1000 * 3; //ms to wait before reconnect | ||||
| 	var heartbeatHandle; | ||||
|  | ||||
| 	ws = new WebSocket("wss://pubsub-edge.twitch.tv"); | ||||
|  | ||||
| 	ws.onopen = function (event) { | ||||
| 		console.log("PubSub Opened"); | ||||
| 		pubSubHeartbeat(); | ||||
| 		heartbeatHandle = setInterval(pubSubHeartbeat, heartbeatInterval); | ||||
|  | ||||
| 		pubSubListen("channel-points-channel-v1." + channelId); | ||||
| 	}; | ||||
|  | ||||
| 	ws.onerror = function (error) { | ||||
| 		console.log("ERR:  " + JSON.stringify(error) + "\n"); | ||||
| 	}; | ||||
|  | ||||
| 	ws.onmessage = function (event) { | ||||
| 		data = JSON.parse(event.data); | ||||
| 		if (data.type == "MESSAGE") { | ||||
| 			message = JSON.parse(data.data.message); | ||||
| 			reward = message.data.redemption.reward; | ||||
| 			console.log(`Received reward: ${reward.id} - ${reward.title}`); | ||||
| 			switch (reward.id) { | ||||
| 				case CONFIG.twitch.rewardIds.turnGreen: | ||||
| 					changeColorTheme(CONFIG.themes.green); | ||||
| 					break; | ||||
| 				case CONFIG.twitch.rewardIds.turnPurple: | ||||
| 					changeColorTheme(CONFIG.themes.purple); | ||||
| 					break; | ||||
| 				case CONFIG.twitch.rewardIds.turnRed: | ||||
| 					changeColorTheme(CONFIG.themes.red); | ||||
| 					break; | ||||
| 				case CONFIG.twitch.rewardIds.turnBlue: | ||||
| 					changeColorTheme(CONFIG.themes.blue); | ||||
| 					break; | ||||
| 			} | ||||
| 		} | ||||
|  | ||||
| 		if (message.type == "RECONNECT") { | ||||
| 			setTimeout(pubSubConnect, reconnectInterval); | ||||
| 		} | ||||
| 	}; | ||||
|  | ||||
| 	ws.onclose = function () { | ||||
| 		clearInterval(heartbeatHandle); | ||||
| 		setTimeout(pubSubConnect, reconnectInterval); | ||||
| 	}; | ||||
| } | ||||
|  | ||||
| function pubSubMain() { | ||||
| 	fetch("https://api.twitch.tv/helix/users?login=" + CONFIG.twitch.username, { | ||||
| 		headers: { | ||||
| 			Authorization: "Bearer " + CONFIG.twitch.oAuth, | ||||
| 			"Client-Id": CONFIG.twitch.clientId, | ||||
| 			"Content-Type": "application/json", | ||||
| 		}, | ||||
| 	}) | ||||
| 		.then((response) => response.json()) | ||||
| 		.then((resData) => { | ||||
| 			channelId = resData.data[0].id; | ||||
| 			pubSubConnect(); | ||||
| 		}); | ||||
| } | ||||
|  | ||||
| pubSubMain(); | ||||
| // changeColorTheme(CONFIG.themes.purple); | ||||
| @@ -16,6 +16,7 @@ fetch("https://api.tipeeestream.com/v2.0/site/socket") | ||||
| 				}); | ||||
| 			}); | ||||
| 			socket.on("new-event", (data) => { | ||||
| 				console.log(data); | ||||
| 				if (data.event.type == "subscription") { | ||||
| 					sub(data.event.parameters.username); | ||||
| 				} | ||||
|   | ||||
							
								
								
									
										12
									
								
								update.ps1
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								update.ps1
									
									
									
									
									
								
							| @@ -32,7 +32,16 @@ if ($newestVersionString -ne "") { | ||||
|   else { | ||||
|     Write-Output "Updating to newer version..." | ||||
|  | ||||
|     Remove-Item * -Recurse -Force -Confirm | ||||
|     if (Test-Path "./config.js") { | ||||
|       if (Test-Path "./config-old.js") { | ||||
|         Remove-Item config-old.js | ||||
|       } | ||||
|       Copy-Item "./config.js" -Destination "./config-old.js" | ||||
|       Write-Output "config.js has been copied" | ||||
|     } | ||||
|      | ||||
|      | ||||
|     Remove-Item *  -Recurse -Force -Exclude config-old.js | ||||
|  | ||||
|     mkdir ./temp | ||||
|     attrib +h ./temp | ||||
| @@ -50,4 +59,5 @@ if ($newestVersionString -ne "") { | ||||
| else { | ||||
|   Write-Output "No new version found!" | ||||
| } | ||||
| Write-Output "You need to add your API-Key again to the config.js!" | ||||
| pause | ||||
							
								
								
									
										2
									
								
								update_force.bat
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								update_force.bat
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| powershell ./update_force.ps1 | ||||
| pause | ||||
							
								
								
									
										39
									
								
								update_force.ps1
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								update_force.ps1
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,39 @@ | ||||
| Write-Output "Starting update..." | ||||
|  | ||||
| $newestVersionString = "" | ||||
| $req = Invoke-WebRequest https://github.com/DerTyp876/obs-twitch-camera-frame/releases/latest | ||||
|  | ||||
| foreach ($tag in $req.ParsedHtml.body.getElementsByTagName('h1')) { | ||||
|   if ($tag.innerText[0] -eq "v") { | ||||
|     $newestVersionString = $tag.innerText | ||||
|   } | ||||
| } | ||||
|  | ||||
| Write-Output "Updating to newer version..." | ||||
|  | ||||
| if (Test-Path "./config.js") { | ||||
|   if (Test-Path "./config-old.js") { | ||||
|     Remove-Item config-old.js | ||||
|   } | ||||
|   Copy-Item "./config.js" -Destination "./config-old.js" | ||||
|   Write-Output "config.js has been copied" | ||||
| } | ||||
|  | ||||
|  | ||||
| Remove-Item *  -Recurse -Force -Exclude config-old.js | ||||
|  | ||||
| mkdir ./temp | ||||
| attrib +h ./temp | ||||
| Write-Output "Downloading newer version..." | ||||
| Invoke-WebRequest -Uri "https://github.com/DerTyp876/obs-twitch-camera-frame/archive/refs/tags/$newestVersionString.zip" -OutFile "./temp/$newestVersionString.zip" | ||||
| Write-Output "Extracting archive..." | ||||
| Expand-Archive -Path "./temp/$newestVersionString.zip" -DestinationPath "./temp/" | ||||
|  | ||||
| Get-ChildItem -Path "./temp/obs-twitch-camera-frame-$($newestVersionString -replace 'v')" -Recurse | Move-Item -Destination "./" | ||||
|  | ||||
| Remove-Item "./temp" -Recurse -Force -Confirm | ||||
|  | ||||
| Write-Output "You are now up to date again!" | ||||
|  | ||||
| Write-Output "You need to add your API-Key again to the config.js!" | ||||
| pause | ||||
		Reference in New Issue
	
	Block a user