Advertisement
Enjl

antizip

Aug 25th, 2020 (edited)
2,521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.70 KB | None | 0 0
  1. -- version 1.1, thanks MrDoubleA
  2.  
  3. local playerManager = require("playerManager")
  4.  
  5. local az = {}
  6.  
  7. az.enabled = true
  8.  
  9. local stuckTimer = 0
  10. local stuckx
  11. local lastPlayerX = 0
  12. local hasPressedDown = false
  13. local wasOnSlope = false
  14. local unduckCollider = Colliders.Box(0,0,0,0)
  15. local regularPlayerHeight = 0
  16. local duckingPlayerHeight = 0
  17. local lastCharacter = nil
  18. local lastPowerup = nil
  19. local lastForcedState = 0
  20. local isDuckPowering = false
  21. local previousY = 0
  22. local freezeState = {
  23.     [1] = true,
  24.     [2] = true,
  25.     [4] = true,
  26.     [5] = true,
  27.     [11] = true,
  28.     [12] = true,
  29.     [41] = true,
  30. }
  31.  
  32. local function blockcheck(offset)
  33.     local y = player.y
  34.     local blocks = Block.getIntersecting(player.x, y + offset, player.x + player.width, y + offset + player.height)
  35.     local goodblocks = {}
  36.     for k,v in ipairs(blocks) do
  37.         if (Block.SOLID_MAP[v.id] or Block.PLAYERSOLID_MAP[v.id]) and (not v.isHidden) and v:mem(0x5C, FIELD_WORD) == 0 then
  38.             if Colliders.collide(player, v) then
  39.                 table.insert(goodblocks, v)
  40.             end
  41.         end
  42.     end
  43.     return #goodblocks > 0, goodblocks
  44. end
  45.  
  46. local function miniBlockCheck(x1, y1, blocks)
  47.     local collisionZone = Colliders.Box(x1, y1, player.width, player.height)
  48.  
  49.     for k,v in ipairs(blocks) do
  50.         if (not Block.SLOPE_MAP[v.id]) and Colliders.collide(collisionZone, v) then
  51.             return true
  52.         end
  53.     end
  54.     return false
  55. end
  56.  
  57. local function expandBlockChecks()
  58.     if wasOnSlope ~= 0 then return false end
  59.  
  60.     local x1 = player.x - 8
  61.     local y1 = player.y - 8
  62.     local x2 = player.x + player.width + 8
  63.     local y2 = player.y + player.height + 8
  64.     local blocks = Colliders.getColliding{
  65.         a = Colliders.Box(x1, y1, player.width + 16, player.height + 16),
  66.         b = Block.SOLID .. Block.PLAYERSOLID,
  67.         btype = Colliders.BLOCK,
  68.         filter = function(other)
  69.             if other.isHidden then return false end
  70.             if other:mem(0x5A, FIELD_WORD) == -1 then return false end
  71.             if other:mem(0x1C, FIELD_WORD) == -1 then return false end
  72.             if other:mem(0x1C, FIELD_WORD) == -1 then return false end
  73.             return true
  74.         end
  75.     }
  76.     x1 = x1 - player.width
  77.     y1 = y1 - player.height
  78.     local dodged = false
  79.     for i=x1, x2, 2 do
  80.         for j=y1, y2, 2 do
  81.             if not miniBlockCheck(i, j, blocks) then
  82.                 if dodged then
  83.                     local xw, yh = player.x, player.y
  84.                     local vec = vector(i-xw, j-yh)
  85.                     if vec.sqrlength < vector(dodged.x-xw, dodged.y-yh).sqrlength then
  86.                         dodged = vector(i,j)
  87.                     end
  88.                 else
  89.                     dodged = vector(i,j)
  90.                 end
  91.             end
  92.         end
  93.     end
  94.     if not dodged then
  95.         player:kill()
  96.         return true
  97.     else
  98.         if vector(dodged.x-player.x, dodged.y-player.y).length > 16 then
  99.             player:harm()
  100.         end
  101.         player.x = dodged.x
  102.         player.y = dodged.y
  103.         isStuckAtAll = false
  104.         return true
  105.     end
  106.     return false
  107. end
  108.  
  109. local function unstuck(px)
  110.     local isStuckAtAll, defaults = blockcheck(0)
  111.     if not isStuckAtAll and player.deathTimer == 0 then
  112.         stuckx = nil
  113.         return false
  114.     end
  115.     return expandBlockChecks()
  116. end
  117.  
  118. function az.onInitAPI()
  119.     registerEvent(az, "onTick")
  120.     registerEvent(az, "onDrawEnd")
  121. end
  122. function az.onDrawEnd()
  123.     previousY = player.y
  124.     if isDuckPowering then
  125.         previousY = previousY - duckingPlayerHeight
  126.     end
  127. end
  128.  
  129. function az.onTick()
  130.     if not az.enabled then return end
  131.     if freezeState[player.forcedState] then
  132.         player.downKeyPressing = hasPressedDown
  133.     end
  134.  
  135.     if player.character ~= lastCharacter or (player.powerup ~= lastPowerup and lastForcedState ~= player.forcedState) then
  136.         local ps = PlayerSettings.get(playerManager.getBaseID(player.character),player.powerup)
  137.         lastCharacter = player.character
  138.         lastPowerup = player.powerup
  139.         regularPlayerHeight = ps.hitboxHeight
  140.         unduckCollider.width = player.width
  141.         unduckCollider.height = ps.hitboxDuckHeight
  142.     end
  143.  
  144.     lastForcedState = player.forcedState
  145.     if hasPressedDown and player.forcedState == 0 and not player.noblockcollision then
  146.         unduckCollider.x = player.x
  147.         unduckCollider.y = player.y + player.height - regularPlayerHeight
  148.  
  149.         local blocks = Colliders.getColliding{
  150.             a = unduckCollider,
  151.             b = Block.SOLID,
  152.             btype = Colliders.BLOCK,
  153.             collisionGroup = player.collisionGroup,
  154.         }
  155.  
  156.         if #blocks > 0 then
  157.             player.keys.down = true
  158.             player:mem(0x12E, FIELD_WORD, -1)
  159.         end
  160.     end
  161.     if not Defines.cheat_shadowmario and not player.noblockcollision and player.deathTimer == 0 and player.forcedState == 0 and #Colliders.getColliding{
  162.         a = player,
  163.         b = Block.SOLID,
  164.         btype = Colliders.BLOCK,
  165.         collisionGroup = player.collisionGroup,
  166.         filter = function(other)
  167.             if other.isHidden then return false end
  168.             if other:mem(0x5A, FIELD_WORD) == -1 then return false end
  169.             if other:mem(0x1C, FIELD_WORD) == -1 then return false end
  170.             if other:mem(0x5C, FIELD_WORD) == -1 then return false end
  171.             return true
  172.         end
  173.     } > 0 then
  174.         if stuckx == nil then
  175.             stuckx = lastPlayerX
  176.         end
  177.         stuckTimer = stuckTimer + 1
  178.         local px = player.x
  179.         player.x = stuckx
  180.         if stuckTimer >= 1 then
  181.             if not unstuck(px) then
  182.                 player.x = px
  183.             end
  184.         end
  185.     else
  186.         stuckTimer = 0
  187.         stuckx = nil
  188.     end
  189.     lastPlayerX = player.x
  190.     wasOnSlope = player:mem(0x48, FIELD_WORD)
  191.        
  192.     if player.forcedState == 0 then
  193.         isDuckPowering = false
  194.         hasPressedDown = player.downKeyPressing
  195.     end
  196. end
  197.  
  198. return az
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement