// 总条数
var num = 0;
var timer = null;
var actionTimer = null;
var moveTimer = null;
var dancerTimer = null;
// 经过几秒关闭一起喊
var allSayTimer = 5000;
// 动作
var actionArr = ['dancing-left','dancing-right','dancing-down','dancing-up','dancing-wobble','dancing-wobble-right'];
// 人物位移动画
var moveArr = ['run-right','run-left','run-right-top','run-left-top','run-right-bottom','run-left-bottom'];
// 随机荧光棒动画
var fluoArr = ['stick-go','stickcome'];
var peopleId = 0;
// 窗体宽度
var winWidth = $(window).width();
// 窗体高度
var winheight = $(window).height();
//控制速度1px
var speed = 1;
var startIndex = 0;
// 领舞关闭时间
var dancingTime = 6000;
// 6秒钟检测移动位置
var runTime = 6000;
// 随机移动的定时器
var upTimer = null;
// 荧光棒关闭时间
var fluoTime = 6000//默认6秒关闭
// 集体舞ji
function allDancing(dangcing){
	if(dangcing!=''){
		actionArr.forEach((item,index)=>{
			var haveDan = $(`.people-img`).is(`.${item}`);
			if(haveDan){
				$(`.people-img`).removeClass(item);
				// $(`.people-img`).addClass(actionArr[Math.floor(Math.random()*actionArr.length)]);
				$(`.people-img`).addClass(dangcing);
				$(`.leading-dancer`).removeClass(item);
				$(`.leading-dancer`).addClass(dangcing);
			}
		})
		setTimeout(()=>{
			startIndex = 0;
			var allPeople = $('.dance-floor').find('.people-img').length;
			$(`.people-img`).removeClass(dangcing);
			var suiDanTimer = setInterval(()=>{
				if(startIndex==allPeople){
					clearInterval(suiDanTimer);
				} else {
					startIndex++;
					$(`.data${startIndex} .people-img`).addClass(actionArr[Math.floor(Math.random()*actionArr.length)]);
				}
			},3000)
		},10000)
	}
}
// 创建人物时随机分配舞蹈
function randomDancing(id){
	$(`.data${id} .people-img`).addClass(actionArr[Math.floor(Math.random()*actionArr.length)]);
}
// 荧光棒动画事件
function fluoEv(id,fluoEvent){
	$(`#${id} .stick`).addClass(fluoEvent);
	setTimeout(()=>{
		$(`#${id} .stick`).removeClass(fluoEvent);
	},fluoTime)
}
// 个人动作舞
function peopleAction(id,aevent){
	actionArr.forEach((item,index)=>{
		var haveDan = $(`#${id} .people-img`).is(`.${item}`);
		if(haveDan){
			$(`#${id} .people-img`).removeClass(item);
			$(`#${id} .people-img`).addClass(aevent);
		} else {
			$(`#${id} .people-img`).addClass(aevent);
		}
	})
}
// 位移事件
function upMove(id){
	var odivu = document.getElementById(`${id}`);
	upTimer = setInterval(()=>{
		$(`#${id}`).animate({top:`${Math.floor(Math.random()*90)}%`,left:`${Math.floor(Math.random()*90)}%`},Math.floor(Math.random()*40000+10000));
	},runTime)
}
// 随机位移
function moveEv(id){
	upMove(id);
}
// 关闭说话
function closeSay(index){
	$(`.data${index} .speak`).addClass("dn");
}
// 开启说话
function sayIng(index){
	$(`.data${index} .speak`).removeClass("dn");
	setTimeout(()=>{
		closeSay(index);
	},6000)
}
// 一起喊
function allSay(val){
	$(`.dance-people .speak`).removeClass("dn");
	$(`.dance-people .speak`).html(val);
	setTimeout(()=>{
		$(`.dance-people .speak`).addClass("dn");
	},allSayTimer)
}
// 退出广场
function exitEv(id){
	$(`${id}`).remove();
}
// 进入广场
function peopleObj(name,uid,say,action,active_time, is_admin){
	// console.log(name + ' ' + uid + ' ' + say + ' ' + action + ' ' + active_time + ' ' + is_admin, 'sssss')
	let yspHtml = '';
	let yspData = [
		{
			id:'',
			uid:uid,
			top:`${Math.random()*500}px`,
			left:`${Math.random()*1500}px`,
			name:name,//用户名
			say:say,//说话内容
			peopleImg:`people-img0${Math.floor(Math.random()*6+1)}`,//人物图片
			ying_guang:`stick-0${Math.floor(Math.random()*5+1)}`,//荧光棒
			dancin:action,
			active_time: active_time,
			is_admin: is_admin
		}
	]
	$.each(yspData, function (commentIndex, comment) {
			let bigStick = comment.is_admin == 1 ? 'stick-swing-big-tow' : ''
			yspHtml += `
			<div id="${comment.uid}" data-time="${comment.active_time}" class="dance-people data${peopleId}" style="top: ${comment.top}; left: ${comment.left};">
				<div class="speak ">${comment.say}</div>
				<div class="people-img ${comment.peopleImg} ${comment.dancin}">
					<div class="stick stick-swing ${bigStick} ${comment.ying_guang}"></div>
					<div class="people-name ">${comment.name}</div>
				</div>
			</div>`
	});//如果是舰长需要加上stick-swing-big-tow
	$('.dance-floor').prepend(yspHtml);
	moveEv(uid);
	// 随机舞
	randomDancing(peopleId);
	// 开始说话
	sayIng(peopleId);
	peopleId++
	// 执行退出事件
	// exitEv(`#peopleId${peopleId-1}`)
}
// 领舞者个人说话的动作
function dancerOwn(dancing){
	actionArr.forEach((item,index)=>{
		var haveDan = $(`.leading-dancer`).is(`.${item}`);
		if(haveDan){
			$(`.leading-dancer`).removeClass(item);
			$(`.leading-dancer`).addClass(dancing);
		}
	})
	setTimeout(()=>{
		dancerRandom();
	},6000)
}
// 领舞者随机的动作
function dancerRandom(){
	// 领舞者随机动效
	dancerTimer = setInterval(()=>{
		actionArr.forEach((item,index)=>{
			var haveDan = $(`.leading-dancer`).is(`.${item}`);
			if(haveDan){
				$(`.leading-dancer`).removeClass(item);
				$(`.leading-dancer`).addClass(actionArr[Math.floor(Math.random()*actionArr.length)]);
			} else {
				$(`.leading-dancer`).addClass(actionArr[Math.floor(Math.random()*actionArr.length)]);
			}
		})
	},dancingTime)
}
$(function(){
	dancerRandom();
	// 自动切歌
	changeMusic();
	var audio=document.getElementById('music');
	if(audio){
		audio.loop = false;
		audio.addEventListener('ended', function () {  
			changeMusic()
		}, false);
	}

	// 60s检测一次  十分钟没发言的删除
	setInterval(function () {
		delExpireDiv()
	}, 60000)

	//烟花
	// setInterval(()=>{
	// 	setTimeout(function() {
	// 		$('.w3-agilefireworks').fireworks();   
	// 	});
	// },6000)
	
})