var turnplate = {
    restaraunts: [],				//大转盘奖品名称
    colors: [],					//大转盘奖品区块对应背景颜色
    outsideRadius: 192,			//大转盘外圆的半径
    textRadius: 155,				//大转盘奖品位置距离圆心的距离
    insideRadius: 68,			//大转盘内圆的半径
    startAngle: 0,				//开始角度
    bRotate: false,				//false:停止;ture:旋转
    time: 2000,
    noBegun: false,
  };
//   console.log("window",window.location.href.split('?')[1].split("&"))
  let useInfo={
    accountId:0,
    token:"",
    secretKey:"",
  };
  
  let id=11;

  if(window.location.href.split('?')[1].split("&")){
  let param = window.location.href.split('?')[1].split("&") ? window.location.href.split('?')[1].split("&") : null;
    useInfo.accountId=param ? param[1].split('=')[1] : 0;
    useInfo.token=param ? param[2].split('=')[1] : 0;
    useInfo.secretKey=param ? param[3].split('=')[1] : 0;
    // id = param ? param[4].split('=')[1] : 0;
  }
let userJson = JSON.stringify(useInfo);
localStorage.userInfo = userJson;
//   let id = param ? param[0].split('=')[1] : 0;
//   let type = param ? param[1].split('=')[1] : 0;
  let remainingCount = 0;
  let LotteryAward = [];
  let colors = [];
  getRemainingCount()
  getLotteryAwardItem()
  function getRemainingCount() { // 获取用户剩余抽奖次数
    $.ajax({
      type: "POST",
      url: `${getApiUrl().urlJava}api/sell/lottery/getLotteryRemainingCount`,
      contentType: "application/json",
      data: getJavaData({ lotteryId: id }),
      async: false,//使用同步的方式,true为异步方式
      success: function (res) {
        if (res.resultCode === 1) {
          remainingCount = res.data.remainingCount
          $('#remainingCount').html(res.data.remainingCount)
        }
      },
      error: function (res) {
        // alert("提交失败" + JSON.stringify(res));
      }
    });
  }
  function getLotteryAwardItem() {
    $.ajax({
      type: "POST",
      url: `${getApiUrl().urlJava}api/sell/lottery/getLotteryAwardItem`,
      contentType: "application/json",
      data: getJavaData({ lotteryId: id }),
      async: false,//使用同步的方式,true为异步方式
      success: function (res) {
        if (res.resultCode === 1) {
          // LotteryAward.push("开始")
          // colors.push("#ffbe04")
          let data = res.data
          if (data.length > 0) {
            data.forEach((x, index) => {
              LotteryAward.push({
                name: x.awardName,
                id: x.awardType
              })
              colors.push((index % 2 == 0) ? "#ffeebe" : "#ffbe04")
              turnplate.noBegun = false
            });
          } else {
            for (let i = 0; i < 6; i++) {
              LotteryAward.push({
                name: '暂无奖项',
                id: 0
              })
              colors.push((i % 2 == 0) ? "#ffeebe" : "#ffbe04")
              turnplate.noBegun = true
            }
          }
          setTimeout(() => {
            $('.spinner').hide()
          }, 1000)
        }
      },
      error: function (res) {
        // alert("提交失败" + JSON.stringify(res));
      }
    });
  }
  $(document).ready(function () {
    //动态添加大转盘的奖品与奖品区域背景颜色
    console.log(LotteryAward)
    turnplate.restaraunts = LotteryAward;
    turnplate.colors = colors;
    //旋转转盘 item:奖品位置; txt:提示语;
    var rotateFn = function (item, txt) {
      var angles = item * (360 / turnplate.restaraunts.length) - (360 / (turnplate.restaraunts.length * 2));
      if (angles < 270) {
        angles = 270 - angles;
      } else {
        angles = 360 - angles + 270;
      }
      $('#wheelcanvas').stopRotate();
      $('#wheelcanvas').rotate({
        angle: 0,
        animateTo: angles + 1800,
        duration: turnplate.time,
        callback: function () {	//回调
          turnplate.bRotate = false
        }
      });
    };
  
    $('.pointer').click(function () {
      if (turnplate.bRotate || turnplate.noBegun) return;
      if (remainingCount === 0 || !remainingCount) return layer.msg("抽奖次数已用完")
      // if (!type || type === '2' || remainingCount < 1) {
      //   if (!type || type === '2') {
      //     return layer.msg("请在活动时间内参与!")
      //   } else {
      //     return layer.msg("抽奖次数已用完!")
      //   }
      // }
      $.ajax({
        type: "POST",
        url: `${getApiUrl().urlJava}api/sell/lottery/getLotteryAward`,
        contentType: "application/json",
        data: getJavaData({ lotteryId: id }),
        async: false,//使用同步的方式,true为异步方式
        success: function (res) {
          console.log("res",res);
          if (res.resultCode === 1) {
            remainingCount = remainingCount - 1
            $('#remainingCount').html(remainingCount)
            if (res.data.winningType === 2) {
              LotteryAward.forEach((x, index) => {
                if (x.id === 1) {
                  rotateFn(index + 1, res.data.awardName);
                  turnplate.bRotate = !turnplate.bRotate;
                  setTimeout(() => {
                    $('.status').html(`很遗憾`)
                    $('.your').html(`未中奖`)
                    $('.tips').show()
                  }, turnplate.time)
                }
              })
            } else {
              LotteryAward.forEach((x, index) => {
                if (x.name === res.data.awardName) {
                  rotateFn(index + 1, res.data.awardName);
                  turnplate.bRotate = !turnplate.bRotate;
                  setTimeout(() => {
                    if (res.data.winningType === 0) {
                      $('.status').html(`很遗憾`)
                      $('.your').html(`未中奖`)
                    } else if (res.data.winningType === 1) {
                      $('.status').html(`恭喜你`)
                      $('.your').html(`获得奖品 <span class="reward">${res.data.awardName}</span>`)
                    }
                    $('.tips').show()
                  }, turnplate.time)
                }
              })
            }
          } else if (res.resultCode === 0) { 
            layer.msg(res.message)
          }
        },
        error: function (res) {
          // alert("提交失败" + JSON.stringify(res));
        }
      });
      // turnplate.bRotate = !turnplate.bRotate;
      //获取随机数(奖品个数范围内)
      // var item = rnd(1, turnplate.restaraunts.length);
      //奖品数量等于10,指针落在对应奖品区域的中心角度[252, 216, 180, 144, 108, 72, 36, 360, 324, 288]
      // rotateFn(item, turnplate.restaraunts[item - 1]);
    });
  });
  $(".rules_footer").click(function () {
    $(".rules_cover,.rules_footer").hide();
    $(".rules_con").css("height", "95vw");
  });
  function rnd(n, m) {
    var random = Math.floor(Math.random() * (m - n + 1) + n);
    return random;
  }
  
  
  //页面所有元素加载完毕后执行drawRouletteWheel()方法对转盘进行渲染
  window.onload = function () {
    drawRouletteWheel();
  };
  
  function drawRouletteWheel() {
    var canvas = document.getElementById("wheelcanvas");
    if (canvas.getContext) {
      //根据奖品个数计算圆周角度
      var arc = Math.PI / (turnplate.restaraunts.length / 2);
      var ctx = canvas.getContext("2d");
      //在给定矩形内清空一个矩形
      ctx.clearRect(0, 0, 422, 422);
      //strokeStyle 属性设置或返回用于笔触的颜色、渐变或模式  
      ctx.strokeStyle = "#FFBE04";
      //font 属性设置或返回画布上文本内容的当前字体属性
      ctx.font = 'bold 18px Microsoft YaHei';
      for (var i = 0; i < turnplate.restaraunts.length; i++) {
        var angle = turnplate.startAngle + i * arc;
        ctx.fillStyle = turnplate.colors[i];
        ctx.beginPath();
        //arc(x,y,r,起始角,结束角,绘制方向) 方法创建弧/曲线(用于创建圆或部分圆)    
        ctx.arc(211, 211, turnplate.outsideRadius, angle, angle + arc, false);
        ctx.arc(211, 211, turnplate.insideRadius, angle + arc, angle, true);
        ctx.stroke();
        ctx.fill();
        //锁画布(为了保存之前的画布状态)
        ctx.save();
  
        //改变画布文字颜色
        var b = i + 2;
        if (b % 2) {
          ctx.fillStyle = "#E5302F";
        } else {
          ctx.fillStyle = "#E5302F";
        };
  
        //----绘制奖品开始----
  
  
        var text = turnplate.restaraunts[i].name;
        var line_height = 17;
        //translate方法重新映射画布上的 (0,0) 位置
        ctx.translate(211 + Math.cos(angle + arc / 2) * turnplate.textRadius, 211 + Math.sin(angle + arc / 2) * turnplate.textRadius);
  
        //rotate方法旋转当前的绘图
        ctx.rotate(angle + arc / 2 + Math.PI / 2);
  
        /** 下面代码根据奖品类型、奖品名称长度渲染不同效果,如字体、颜色、图片效果。(具体根据实际情况改变) **/
        // if (text.indexOf("盘") > 0) {//判断字符进行换行
        //   var texts = text.split("盘");
        //   for (var j = 0; j < texts.length; j++) {
        //     ctx.font = j == 0 ? 'bold 20px Microsoft YaHei' : 'bold 18px Microsoft YaHei';
        //     if (j == 0) {
        //       ctx.fillText(texts[j] + "盘", -ctx.measureText(texts[j] + "盘").width / 2, j * line_height);
        //     } else {
        //       ctx.fillText(texts[j], -ctx.measureText(texts[j]).width / 2, j * line_height * 1.2); //调整行间距
        //     }
        //   }
        // } else if (text.indexOf("盘") == -1 && text.length > 8) {//奖品名称长度超过一定范围 
        //   text = text.substring(0, 8) + "||" + text.substring(8);
        //   var texts = text.split("||");
        //   for (var j = 0; j < texts.length; j++) {
        //     ctx.fillText(texts[j], -ctx.measureText(texts[j]).width / 2, j * line_height);
        //   }
        // } else {
  
        //在画布上绘制填色的文本。文本的默认颜色是黑色
  
        //measureText()方法返回包含一个对象,该对象包含以像素计的指定字体宽度
        ctx.fillText(text, -ctx.measureText(text).width / 2, 0);
        // }
  
        //添加对应图标
  
        // if(text.indexOf(turnplate.restaraunts[0])>=0){
        //   var img= document.getElementById("diy1-img");
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-35,20);      
        //   };  
        //   ctx.drawImage(img,-35,20);  
        // };
        // if(text.indexOf(turnplate.restaraunts[1])>=0){
        //   var img= document.getElementById("shan-img");
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-35,20);      
        //   }; 
        //   ctx.drawImage(img,-35,20);  
        // };
        // if(text.indexOf(turnplate.restaraunts[2])>=0){
        //   var img= document.getElementById("diy5-img");			
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-25,35);      
        //   };  
        //   ctx.drawImage(img,-30,35);  
        // };
        // if(text.indexOf(turnplate.restaraunts[3])>=0){
        //   var img= document.getElementById("shan-img");
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-35,20);      
        //   };  
        //   ctx.drawImage(img,-35,20);  
        // };
        // if(text.indexOf(turnplate.restaraunts[4])>=0){
        //   var img= document.getElementById("diy3-img");
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-30,20);      
        //   };  
        //   ctx.drawImage(img,-30,20);  
        // };
        // if(text.indexOf(turnplate.restaraunts[5])>=0){
        //   var img= document.getElementById("shan-img");
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-35,20);      
        //   };  
        //   ctx.drawImage(img,-35,20);  
        // };
        // if(text.indexOf(turnplate.restaraunts[6])>=0){
        //   var img= document.getElementById("diy2-img");			  
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-30,20);      
        //   };  
        //   ctx.drawImage(img,-30,20);  
        // };
  
        // if(text.indexOf(turnplate.restaraunts[7])>=0){
        //   var img= document.getElementById("shan-img");
        //   img.onload=function(){  
        // 	  ctx.drawImage(img,-35,20);      
        //   };  
        //   ctx.drawImage(img,-35,20);  
        // };
  
  
        //把当前画布返回(调整)到上一个save()状态之前 
        ctx.restore();
        //----绘制奖品结束----
      }
    }
  };