Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. planet = Class{}
  2. G = 6.67e-1
  3. function planet:init(x, y, mass, radius, img, arg)
  4. self.x = x
  5. self.y = y
  6. self.mass = mass
  7. self.r = radius
  8. self.w = img:getWidth()
  9. self.image = img
  10. self.angle = 0
  11. self.color = {1,1,1,1}
  12. if arg == "nodelete" then
  13. self.deletable = false
  14. else
  15. self.deletable = true
  16. end
  17. end
  18. function planet:update(dt)
  19. local distanceToShip = math.sqrt((firstShip.x - self.x)^2 + (firstShip.y - self.y)^2)
  20. local gravitationalAttraction = G*self.mass/(distanceToShip^2)
  21. --print((firstShip.x - self.x) .. " " .. (firstShip.y - self.y))
  22. self.angle = math.atan( (firstShip.y - self.y)/ (firstShip.x - self.x))
  23. if self.x < firstShip.x then
  24. self.angle = self.angle - 3.14159
  25. end
  26. --print("Angle is:" .. self.angle*57.29)
  27. self.attractionY = math.sin(self.angle) * gravitationalAttraction
  28. self.attractionX = math.cos(self.angle) * gravitationalAttraction
  29. love.window.setTitle(self.attractionX)
  30. firstShip.dx = firstShip.dx + self.attractionX
  31. firstShip.dy = firstShip.dy + self.attractionY
  32. if distanceToShip < self.w/4 then
  33. shipIsHit = true
  34. end
  35. end
  36. function planet:draw()
  37. --love.graphics.rectangle("fill", firstShip.x, firstShip.y, 30, 30)
  38. love.graphics.push()
  39. love.graphics.translate(firstShip.x, firstShip.y) -- move relative (0,0) to (x,y)
  40. love.graphics.rotate(self.angle) -- rotate coordinate system around relative (0,0) (absolute (x,y))
  41. --love.graphics.rectangle("fill", -(firstShip.x - self.x)/2, -20/2, (firstShip.x - self.x), 20) VECTOR
  42. love.graphics.pop()
  43. love.graphics.setColor(unpack(self.color))
  44. love.graphics.draw(self.image, self.x, self.y, 1.5708, self.r, self.r, self.w/2, self.w/2)
  45. end