Показать сообщение отдельно
  #8 (permalink)  
Старый 25.06.2018, 18:14
Профессор
Отправить личное сообщение для Dilettante_Pro Посмотреть профиль Найти все сообщения от Dilettante_Pro
 
Регистрация: 27.11.2015
Сообщений: 2,899

Для начала
<!DOCTYPE html>
 
<html>
<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <style type="text/css">
td {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  text-align: center;
  background-color: rgba(30, 144, 255, 1);
  margin: 0;
  padding: 0;
}

 
.ship {
   background-color: rgba(105, 105, 105, 1);
}
</style>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
  <script>
$(function() {
var count = 0, marina = [], i, j;
for (i = 0; i < 11; i++){
   marina[i] = [];
   for (j = 0; j < 11; j++){
       marina [i][j] = false;
   }
};
var mytable = $('<table/>').appendTo('body'), tr,
td = $.map(Array(100),function(el,i) {
    i % 10 || (tr = $('<tr/>').appendTo(mytable));
    return $('<td/>').appendTo(tr);
})

$('td').on('click', function() {
     i = this.parentNode.rowIndex;
     j = this.cellIndex; 
     if($(this).hasClass('ship')) { 
         count--;
         marina[i][j] = false;
         $(this).toggleClass('ship'); 
     }
     else {
         if(count < 20) {
            testSet(i,j,this);
         } else {
             alert('Уже расставлены все корабли');
         };
     };
     $('#count').html(count);

});
function testSet(row,col, that) {
  var k, 
        m, 
        ok = true;
  loop:
  for (k = (row == 0)? 1: (row - 1) ; k < row + 2; k += 2) {
      for(m = (col == 0)? 1: (col - 1); m < col + 2; m += 2) {
          if(marina[k][m]) {
              alert("Нельзя ставить новый корабль вплотную");
              ok = false;
              break loop;
          }
      };
   };
   if (ok) { 
      marina[row][col] = true;
      count++;
      $(that).toggleClass('ship');
   }
}

});
  </script>
</head>
 
<body>
 
  <div id="count"></div>
</body>
</html>
Ответить с цитированием