You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1536 lines
41 KiB

  1. --CALLING OTHER LUA FILES
  2. require "src/dependencies"
  3. io.stdout:setvbuf("no")
  4. --CANCELLED ATTEMPETED SHADING (NOT WORKING)
  5. local shader_code =
  6. [[
  7. vec4 effect(vec4 color, Image image, vec2 uvs, vec2 screen_coords) {
  8. vec4 pixel = Texel(image,uvs);
  9. return pixel * color;
  10. }
  11. ]]
  12. debug = true
  13. --GLOBAL VARIABLES
  14. gameMode = "normal"
  15. ts = 0
  16. globalState = "menu"
  17. timeIsSlow = false
  18. timeIsSlow2 = false
  19. originalSpeed = 200
  20. explosionRange = 0
  21. blockinput = false
  22. wall1width = 30
  23. nuclearanimation = 3
  24. easternum = 0
  25. ball_DIR = 0
  26. updaterate = 0.1
  27. RED = 255
  28. hitNum = {}
  29. hitNum[1] = 0
  30. hitNum[2] = 0
  31. hitNum[3] = 0
  32. confirmation = "N"
  33. hitNum[4] = 0
  34. p1bonus = 0
  35. p2bonus = 0
  36. hitNum[5] = 0
  37. hitNum[6] = 0
  38. GREEN = 255
  39. IP = '45.76.95.31'
  40. BLUE = 255
  41. updateTEXT = "Chalkboard Update"
  42. maxBalls = 1
  43. playerCount = 1
  44. player1reverbav = 0
  45. playertext = "1v1"
  46. player2reverbav = 0
  47. elapsed = 0
  48. rotation = 0
  49. TEXT = "Nuclear Pong"
  50. currentKey = " "
  51. ptw = 10
  52. --CHECKING IF CONTROLS ARE TAKEN
  53. danger = "none"
  54. danger2 = "none"
  55. nuckemodactive = 0
  56. maxspeed = 700
  57. DIFFERENCE_X = 1
  58. DIFFERENCE_Y = 1
  59. paddle_SPEED = 20
  60. textamount = 15
  61. AI_STRIKEMOD = 1000
  62. resolutionWin = 0
  63. AGAINST_AI = 0
  64. RESOLUTION_SET = 0
  65. AI_NUKEMOD = 1000
  66. animstart = true
  67. AI_SPEED = 30
  68. craz = 0
  69. AI_LEVEL = 500
  70. isFullscreen = 0
  71. prtext = "Easy"
  72. lastSentKey = "c"
  73. MAP_TYPE = 0
  74. lastSentKeyClient = "c"
  75. difficultyl = 300
  76. req = "pp"
  77. ballSet = 200
  78. p1control = {up = "a", down = "z", super = "s", counter = "x"}
  79. p2control = {up = ";", down = ".", super = "l", counter = ","}
  80. synctext = "Independent"
  81. synctype = 0
  82. function newButton(text, fn)
  83. return {
  84. text = text,
  85. fn = fn,
  86. now = false,
  87. last = false
  88. }
  89. end
  90. function love.keyboard.mouseWasReleased()
  91. return love.keyboard.mouseisReleased
  92. end
  93. function autoSave(dt)
  94. autoTimer = autoTimer + dt
  95. end
  96. function balancer()
  97. if (player2score == 9 or player1score == 9) then
  98. shakeDuration = 5
  99. if debug then
  100. --print("Shaking set to match almost over")
  101. end
  102. end
  103. if (player1score < player2score) then
  104. p1bonus = (player2score - player1score) * 5
  105. else
  106. p1bonus = 0
  107. end
  108. if (player2score < player1score) then
  109. p2bonus = (player1score - player2score) * 5
  110. else
  111. p2bonus = 0
  112. end
  113. end
  114. function newWall(wallx, wally, wallwidth, wallheight)
  115. return {
  116. wallx = wallx,
  117. wally = wally,
  118. walwidth = wallwidth,
  119. wallheight = wallheight
  120. }
  121. end
  122. speedParameters = {}
  123. buttons = {}
  124. IPselect = {}
  125. difbuttons = {}
  126. settings = {}
  127. walls = {}
  128. editorpicks = {}
  129. controlSettings = {}
  130. modeSelectorButtons = {}
  131. pracdiff = {}
  132. playerCountButtons = {}
  133. function controlChanger()
  134. if (gameState == "assign") then
  135. love.graphics.clear(50 / 255, 50 / 255, 50 / 255, 255)
  136. love.graphics.printf("SELECT BUTTON", 0, VIRTUAL_HEIGHT / 2, VIRTUAL_WIDTH, "center")
  137. end
  138. end
  139. function love.load()
  140. love.keyboard.setKeyRepeat(true)
  141. simpleScale.setWindow(VIRTUAL_WIDTH, VIRTUAL_HEIGHT, WINDOW_WIDTH, WINDOW_HEIGHT)
  142. configfile = io.open("config.lua", "r")
  143. configsave = io.open("config.lua", "w")
  144. shader = love.graphics.newShader(shader_code)
  145. time_1 = 0
  146. --print("Debug active")
  147. --load
  148. testwalls = love.filesystem.load("save.lua")()
  149. if testwalls ~= nil then
  150. walls = love.filesystem.load("save.lua")()
  151. end
  152. light = 0
  153. image = love.graphics.newImage("Madi.png")
  154. table.insert(
  155. editorpicks,
  156. newButton(
  157. "C",
  158. function()
  159. for k in pairs(walls) do
  160. walls[k] = nil
  161. end
  162. end
  163. )
  164. )
  165. table.insert(
  166. editorpicks,
  167. newButton(
  168. "S",
  169. function()
  170. love.filesystem.write("save.lua", serialize(walls))
  171. end
  172. )
  173. )
  174. table.insert(
  175. editorpicks,
  176. newButton(
  177. "L",
  178. function()
  179. walls = love.filesystem.load("save.lua")()
  180. end
  181. )
  182. )
  183. table.insert(
  184. buttons,
  185. newButton(
  186. "Singleplayer",
  187. function()
  188. gameState = "gameMode"
  189. end
  190. )
  191. )
  192. table.insert(
  193. buttons,
  194. newButton(
  195. "Online",
  196. function()
  197. gameState = "chooseIP"
  198. end
  199. )
  200. )
  201. table.insert(
  202. IPselect,
  203. newButton(
  204. "Host",
  205. function()
  206. globalState = "nettest"
  207. AGAINST_AI = 0
  208. gameState = "1serve"
  209. end
  210. )
  211. )
  212. table.insert(
  213. IPselect,
  214. newButton(
  215. "Guest",
  216. function()
  217. globalState = "clienttest"
  218. AGAINST_AI = 0
  219. gameState = "1serve"
  220. end
  221. )
  222. )
  223. table.insert(
  224. buttons,
  225. newButton(
  226. "Multiplayer",
  227. function()
  228. gameState = "multiMode"
  229. end
  230. )
  231. )
  232. table.insert(
  233. buttons,
  234. newButton(
  235. "Settings",
  236. function()
  237. AGAINST_AI = 0
  238. gameState = "windowsettings"
  239. end
  240. )
  241. )
  242. table.insert(
  243. buttons,
  244. newButton(
  245. "Exit",
  246. function()
  247. love.event.quit(0)
  248. end
  249. )
  250. )
  251. table.insert(
  252. difbuttons,
  253. newButton(
  254. "Easy",
  255. function()
  256. hardmanager("easy")
  257. end
  258. )
  259. )
  260. table.insert(
  261. difbuttons,
  262. newButton(
  263. "Normal",
  264. function()
  265. hardmanager("normal")
  266. end
  267. )
  268. )
  269. table.insert(
  270. difbuttons,
  271. newButton(
  272. "Hard",
  273. function()
  274. hardmanager("hard")
  275. end
  276. )
  277. )
  278. table.insert(
  279. difbuttons,
  280. newButton(
  281. "Smart",
  282. function()
  283. hardmanager("smart")
  284. end
  285. )
  286. )
  287. table.insert(
  288. settings,
  289. newButton(
  290. "Change Map",
  291. function()
  292. MAP_TYPE = MAP_TYPE + 1
  293. end
  294. )
  295. )
  296. table.insert(
  297. settings,
  298. newButton(
  299. "Toggle Fullscreen",
  300. function()
  301. myscreen:toggle(VIRTUAL_HEIGHT, VIRTUAL_WIDTH)
  302. DIFFERENCE_X = myscreen.c
  303. DIFFERENCE_Y = myscreen.d
  304. end
  305. )
  306. )
  307. table.insert(
  308. settings,
  309. newButton(
  310. "Editor",
  311. function()
  312. gameState = "editor"
  313. end
  314. )
  315. )
  316. table.insert(
  317. settings,
  318. newButton(
  319. "Speed Settings",
  320. function()
  321. gameState = "speedSettings"
  322. end
  323. )
  324. )
  325. table.insert(
  326. settings,
  327. newButton(
  328. "Control Settings",
  329. function()
  330. gameState = "controlSettings"
  331. end
  332. )
  333. )
  334. table.insert(
  335. settings,
  336. newButton(
  337. "Back to Menu",
  338. function()
  339. gameState = "menu"
  340. end
  341. )
  342. )
  343. table.insert(
  344. speedParameters,
  345. newButton(
  346. "Back to Menu",
  347. function()
  348. gameState = "windowsettings"
  349. end
  350. )
  351. )
  352. --table.insert(speedParameters, newButton("Ball Speed: ", function() speedSetter('ball') end))
  353. table.insert(
  354. playerCountButtons,
  355. newButton(
  356. "Ball Speed: ",
  357. function()
  358. speedSetter("ball")
  359. end
  360. )
  361. )
  362. --table.insert(speedParameters, newButton("snc", function() speedSetter('snc') end))
  363. table.insert(
  364. playerCountButtons,
  365. newButton(
  366. "snc",
  367. function()
  368. speedSetter("snc")
  369. end
  370. )
  371. )
  372. table.insert(
  373. speedParameters,
  374. newButton(
  375. "NUCLEAR MODE",
  376. function()
  377. speedSetter("nuclearmod")
  378. end
  379. )
  380. )
  381. table.insert(
  382. controlSettings,
  383. newButton(
  384. "1up",
  385. function()
  386. gameState = "assign"
  387. req = "p1up"
  388. end
  389. )
  390. )
  391. table.insert(
  392. controlSettings,
  393. newButton(
  394. "1down",
  395. function()
  396. gameState = "assign"
  397. req = "p1down"
  398. end
  399. )
  400. )
  401. table.insert(
  402. controlSettings,
  403. newButton(
  404. "1special",
  405. function()
  406. gameState = "assign"
  407. req = "p1super"
  408. end
  409. )
  410. )
  411. table.insert(
  412. controlSettings,
  413. newButton(
  414. "1ct",
  415. function()
  416. gameState = "assign"
  417. req = "p1ct"
  418. end
  419. )
  420. )
  421. table.insert(
  422. controlSettings,
  423. newButton(
  424. "2up",
  425. function()
  426. gameState = "assign"
  427. req = "p2up"
  428. end
  429. )
  430. )
  431. table.insert(
  432. controlSettings,
  433. newButton(
  434. "2down",
  435. function()
  436. gameState = "assign"
  437. req = "p2down"
  438. end
  439. )
  440. )
  441. table.insert(
  442. controlSettings,
  443. newButton(
  444. "2special",
  445. function()
  446. gameState = "assign"
  447. req = "p2super"
  448. end
  449. )
  450. )
  451. table.insert(
  452. controlSettings,
  453. newButton(
  454. "2ct",
  455. function()
  456. gameState = "assign"
  457. req = "p2ct"
  458. end
  459. )
  460. )
  461. table.insert(
  462. controlSettings,
  463. newButton(
  464. "Default",
  465. function()
  466. p1control = {up = "a", down = "z", super = "s", counter = "x"}
  467. p2control = {up = ";", down = ".", super = "l", counter = ","}
  468. end
  469. )
  470. )
  471. table.insert(
  472. controlSettings,
  473. newButton(
  474. "Return",
  475. function()
  476. gameState = "windowsettings"
  477. end
  478. )
  479. )
  480. table.insert(
  481. modeSelectorButtons,
  482. newButton(
  483. "Nuclear Pong",
  484. function()
  485. gameState = "difficulty"
  486. end
  487. )
  488. )
  489. table.insert(
  490. modeSelectorButtons,
  491. newButton(
  492. "Main Menu",
  493. function()
  494. gameState = "menu"
  495. end
  496. )
  497. )
  498. table.insert(
  499. pracdiff,
  500. newButton(
  501. "Silverblade",
  502. function()
  503. speedSetter("practice")
  504. end
  505. )
  506. )
  507. table.insert(
  508. pracdiff,
  509. newButton(
  510. "Return",
  511. function()
  512. speedSetter("reset")
  513. gameState = "gameMode"
  514. end
  515. )
  516. )
  517. table.insert(
  518. pracdiff,
  519. newButton(
  520. "Go!",
  521. function()
  522. gameMode = "practice"
  523. hardmanager("practice")
  524. end
  525. )
  526. )
  527. --table.insert(playerCountButtons, newButton("1v1", function() speedSetter('pc') end))
  528. table.insert(
  529. playerCountButtons,
  530. newButton(
  531. "ballCount",
  532. function()
  533. speedSetter("ballz")
  534. end
  535. )
  536. )
  537. table.insert(
  538. difbuttons,
  539. newButton(
  540. "ballCount",
  541. function()
  542. speedSetter("ballz")
  543. end
  544. )
  545. )
  546. table.insert(
  547. playerCountButtons,
  548. newButton(
  549. "Return",
  550. function()
  551. speedSetter("reset")
  552. gameState = "menu"
  553. end
  554. )
  555. )
  556. table.insert(
  557. playerCountButtons,
  558. newButton(
  559. "ptw",
  560. function()
  561. speedSetter("ptw")
  562. end
  563. )
  564. )
  565. table.insert(
  566. playerCountButtons,
  567. newButton(
  568. "Play",
  569. function()
  570. AGAINST_AI = 0
  571. gameState = "1serve"
  572. globalState = "base"
  573. end
  574. )
  575. )
  576. table.insert(
  577. playerCountButtons,
  578. newButton(
  579. "Reverse Play",
  580. function()
  581. gameState = "1serve"
  582. gameMode = "reversegame"
  583. end
  584. )
  585. )
  586. --table.insert(speedParameters, newButton("Ball Speed: ", function() speedSetter() end))
  587. love.window.setTitle("NUCLEAR PONG")
  588. textphrases = {
  589. "Amazing",
  590. "Superb",
  591. "Absolutely beautiful!",
  592. "Awesome",
  593. "Look at That!",
  594. "Great",
  595. "Nice",
  596. "Boom!",
  597. "Dangerous!",
  598. "Astonishing!",
  599. "u/ebernerd saved me",
  600. "Absolutely Wonderful!",
  601. "Exsquisite",
  602. "Delicate",
  603. "Pow!",
  604. "Great Hit",
  605. "all hail nazarbayev"
  606. }
  607. sounds = {
  608. ["updateMusic"] = love.audio.newSource("audio/theme1.mp3", "static"),
  609. ["gayTheme"] = love.audio.newSource("audio/theme2.mp3", "static"),
  610. ["gayTheme2"] = love.audio.newSource("audio/theme3.mp3", "static"),
  611. ["gayTheme3"] = love.audio.newSource("audio/theme4.mp3", "static"),
  612. ["beep"] = love.audio.newSource("audio/hit1.mp3", "static"),
  613. ["wallhit"] = love.audio.newSource("audio/hit2.wav", "static"),
  614. ["win"] = love.audio.newSource("win.wav", "static"),
  615. ["score"] = love.audio.newSource("audio/score.wav", "static"),
  616. ["nuke"] = love.audio.newSource("audio/bomb.wav", "static"),
  617. ["striking"] = love.audio.newSource("audio/superhit.wav", "static"),
  618. ["nuclearhit"] = love.audio.newSource("audio/hit1.mp3", "static"),
  619. ["time"] = love.audio.newSource("audio/time.wav", "static")
  620. }
  621. love.graphics.setDefaultFilter("nearest", "nearest")
  622. --comic sans lmao
  623. math.randomseed(os.time())
  624. smallfont = love.graphics.newFont("font.ttf", 25)
  625. scorefont = love.graphics.newFont("font.ttf", 60)
  626. love.graphics.setFont(smallfont)
  627. --push:setupScreen(VIRTUAL_WIDTH, VIRTUAL_HEIGHT, WINDOW_WIDTH, WINDOW_HEIGHT, {
  628. -- fullscreen = isFullscreen,
  629. -- resizable = true,
  630. -- vsync = true,
  631. --})
  632. player1score = 0
  633. player2score = 0
  634. areanuclear = 0
  635. player1nukescore = 0
  636. player2nukescore = 0
  637. striken = 0
  638. soundtype = 1
  639. soundturn = 1
  640. potentialstrike1 = 0
  641. potentialstrike2 = 0
  642. potentialnuke1 = 0
  643. potentialnuke2 = 0
  644. player1striken = 0
  645. player2striken = 0
  646. randomtext = 0
  647. selecting = 0
  648. number = 0
  649. elec = 1
  650. INDIC = {
  651. "",
  652. "",
  653. "",
  654. ""
  655. }
  656. --playe1nuke
  657. player1 = paddle(0, 30, 10, 100, 1)
  658. player2 = paddle(VIRTUAL_WIDTH * 0.99, VIRTUAL_HEIGHT * 0.88, 10, 100, 2)
  659. player3 = paddle(5000, 5000, 10, 100)
  660. player4 = paddle(5000, 5000, 10, 100)
  661. ball = {}
  662. ball[1] = eball(VIRTUAL_WIDTH / 2, VIRTUAL_HEIGHT / 2 - 2, 16, 16)
  663. ball[2] = eball(VIRTUAL_WIDTH / 1.9, VIRTUAL_HEIGHT / 2 - 2, 16, 16)
  664. ball[3] = eball(VIRTUAL_WIDTH / 1.8, VIRTUAL_HEIGHT / 2 - 2, 16, 16)
  665. ball[4] = eball(VIRTUAL_WIDTH / 2.2, VIRTUAL_HEIGHT / 2 - 2, 16, 16)
  666. ball[5] = eball(VIRTUAL_WIDTH / 2.1, VIRTUAL_HEIGHT / 2 - 2, 16, 16)
  667. myscreen = fullScreener(RESOLUTION_SET, isFullscreen, DIFFERENCE_X, DIFFERENCE_Y)
  668. mymenu = mainMenu()
  669. ballSpeed = 200
  670. ballDX = math.random(2) == 1 and 100 or -100
  671. ballDY = math.random(-50, 50)
  672. gameState = "animation"
  673. end
  674. t = 0
  675. shakeDuration = 0
  676. shakeMagnitude = 1
  677. function startShake(duration, magnitude)
  678. t, shakeDuration, shakeMagnitude = 0, duration or 1, magnitude or 5
  679. end
  680. function displayFPS()
  681. --love.window.setTitle(love.timer.getFPS())
  682. love.window.setTitle(globalState .. " " .. gameState)
  683. if love.keyboard.isDown("space") then
  684. player1nukescore = 200
  685. player1score = player1score + 0.2
  686. player2nukescore = 200
  687. end
  688. end
  689. function speedControl()
  690. if (ballSpeed > maxspeed and gameState == "play") then
  691. ballSpeed = maxspeed
  692. end
  693. end
  694. function love.update(dt)
  695. --print("IMPORTANT!!!!!" .. globalState .. gameState)
  696. staticanimatorcounter(dt)
  697. musicController('norm', 1)
  698. if debug then
  699. displayFPS()
  700. end
  701. if globalState == "base" then
  702. basegame(dt)
  703. end
  704. if globalState == "menu" then
  705. debugCheck(dt)
  706. end
  707. if globalState == "nettest" then
  708. print("Confcode: " .. confirmation)
  709. if confirmation == "N" then
  710. basegame(dt)
  711. end
  712. nettest(dt)
  713. end
  714. if globalState == "clienttest" then
  715. ts = ts + dt
  716. if confirmation == "N" then
  717. lastSentKeyP1 = lastSentKeyClient
  718. clientsBaseGame(dt)
  719. end
  720. clienttest(dt)
  721. end
  722. end
  723. serverinit = false
  724. clientinit = false
  725. function love.textinput(t)
  726. if gameState == "chooseIP" then
  727. IP = IP .. t
  728. end
  729. end
  730. function nettest(dt)
  731. if serverinit == false then
  732. local socket = require "socket"
  733. local address, port = IP, 12345
  734. print(address)
  735. udp = socket.udp()
  736. udp:setpeername(address, port)
  737. udp:settimeout(0)
  738. serverinit = true
  739. end
  740. for i = 1, maxBalls do
  741. ts = ts + dt
  742. if ts > updaterate then
  743. --print (tostring(ball[i].dy))
  744. udp:send(tostring(lastSentKey) ..
  745. '|' .. tostring(ball[i].dy) ..
  746. '|' .. tostring(player2.y) ..
  747. '|' .. tostring(player1.y) ..
  748. '|' .. tostring(player1score) ..
  749. '|' .. tostring(player2score) ..
  750. '|' .. tostring(player1nukescore) ..
  751. '|' .. tostring(player2nukescore) ..
  752. '|' .. tostring(ball[i].x) ..
  753. '|' .. tostring(ball[i].y) ..
  754. '|' .. gameState ..
  755. '|' .. tostring(ball[i].dx) ..
  756. "|HOST")
  757. print("SENT: " .. lastSentKey)
  758. ts = 0
  759. end
  760. end
  761. local data
  762. local datanumtest = 0
  763. data = udp:receive()
  764. repeat
  765. datanumtest = datanumtest + 1
  766. print("LATENCY: " .. tostring(datanumtest))
  767. data = udp:receive()
  768. if data then
  769. confirmation = "N"
  770. local p = split(data, '|')
  771. if p[3] ~= "CLIENT" then
  772. confirmation = "U"
  773. end
  774. if tonumber(p[4]) > 90 then
  775. confirmation = "L"
  776. end
  777. lastSentKeyClient = p[1]
  778. player2.y = tonumber(p[2])
  779. end
  780. until not data
  781. end
  782. function clienttest(dt)
  783. if clientinit == false then
  784. local socket = require "socket"
  785. local address, port = IP, 12345
  786. udp = socket.udp()
  787. udp:setpeername(address, port)
  788. udp:settimeout(0)
  789. udp:send(tostring(lastSentKey) .. '|' .. tostring(player2.y) .. "|CLIENT")
  790. clientinit = true
  791. end
  792. ts = ts + dt
  793. if ts > updaterate then
  794. udp:send(tostring(lastSentKey) .. '|' .. tostring(player2.y) .. "|CLIENT")
  795. ts = 0
  796. end
  797. local data
  798. local datanumtest = 0
  799. data = udp:receive()
  800. repeat
  801. datanumtest = datanumtest + 1
  802. print("LATENCY: " .. tostring(datanumtest))
  803. data = udp:receive()
  804. if data then
  805. print(data)
  806. print("SENT TO SERVER:" .. lastSentKey)
  807. confirmation = "N"
  808. local p = split(data, '|')
  809. if p[13] then
  810. if p[13] ~= "HOST" then
  811. confirmation = "U"
  812. end
  813. if tonumber(p[14]) > 5 then
  814. confirmation = "L"
  815. end
  816. for i = 1, maxBalls do
  817. local die = tonumber(p[2])
  818. lastSentKeyClient, ball[i].dy, player2.y, player1.y, player1score, player2score, player1nukescore, player2nukescore, ball[i].x, ball[i].y, gameState, ball[i].dx = p[1], die, tonumber(p[3]), tonumber(p[4]), tonumber(p[5]), tonumber(p[6]), tonumber(p[7]), tonumber(p[8]), tonumber(p[9]), tonumber(p[10]), p[11], tonumber(p[12])
  819. end
  820. end
  821. end
  822. print("GOT: " .. lastSentKeyClient)
  823. until not data
  824. end
  825. function wallbreaker(x, y)
  826. if (gameState == "editor") then
  827. for i, wall in ipairs(walls) do
  828. if math.abs(wall.wallx - x) < 10 and math.abs(wall.wally - y) < 10 then
  829. table.remove(walls, i)
  830. end
  831. end
  832. end
  833. end
  834. function hardmanager(diff)
  835. selecting = 1
  836. if (diff == "easy") then
  837. INDIC[1] = ">"
  838. AGAINST_AI = 1
  839. AI_SPEED = ballSet / 10
  840. AI_STRIKEMOD = 100
  841. AI_NUKEMOD = 1000
  842. AI_LEVEL = 350
  843. difficultyl = 200
  844. selecting = 0
  845. gameState = "1serve"
  846. globalState = "base"
  847. end
  848. if (diff == "normal") then
  849. INDIC[2] = ">"
  850. AI_SPEED = ballSet / 10
  851. AI_LEVEL = 500
  852. AI_NUKEMOD = 250
  853. AI_STRIKEMOD = 60
  854. AGAINST_AI = 1
  855. difficultyl = 300
  856. selecting = 0
  857. gameState = "1serve"
  858. globalState = "base"
  859. end
  860. if (diff == "hard") then
  861. INDIC[3] = ">"
  862. AI_SPEED = ballSpeed * 1.1 + 50
  863. AI_SPEED = AI_SPEED / 10
  864. AI_LEVEL = 700
  865. AI_NUKEMOD = 200
  866. AI_STRIKEMOD = 20
  867. selecting = 0
  868. difficultyl = 350
  869. AGAINST_AI = 1
  870. gameState = "1serve"
  871. globalState = "base"
  872. end
  873. if (diff == "smart") then
  874. INDIC[3] = ">"
  875. AI_SPEED = ballSpeed * 1.1 + 50
  876. AI_SPEED = AI_SPEED / 10
  877. AI_LEVEL = 1500
  878. AI_NUKEMOD = 200
  879. AI_STRIKEMOD = 20
  880. selecting = 0
  881. difficultyl = 350
  882. AGAINST_AI = 1
  883. gameState = "1serve"
  884. globalState = "base"
  885. end
  886. if (diff == "practice") then
  887. INDIC[3] = ">"
  888. AI_SPEED = ballSpeed * 500 + 50
  889. AI_SPEED = AI_SPEED / 10
  890. AI_LEVEL = 700
  891. AI_NUKEMOD = 9000000000
  892. AI_STRIKEMOD = 90000000
  893. selecting = 0
  894. difficultyl = 350
  895. AGAINST_AI = 1
  896. gameState = "base"
  897. end
  898. end
  899. function dangerChecker() --CHECK IF CONTROLS ARE DUPLICATING
  900. if (p1control.up == p1control.down) then
  901. danger = "1up"
  902. danger2 = "1down"
  903. elseif (p1control.up == p1control.super) then
  904. danger = "1up"
  905. danger2 = "1special"
  906. elseif (p1control.up == p1control.counter) then
  907. danger = "1up"
  908. danger2 = "1ct"
  909. elseif (p1control.down == p1control.super) then
  910. danger = "1down"
  911. danger2 = "1special"
  912. elseif (p1control.down == p1control.counter) then
  913. danger = "1ct"
  914. danger2 = "1down"
  915. elseif (p1control.super == p1control.counter) then
  916. danger = "1special"
  917. danger2 = "1ct"
  918. elseif (p2control.down == p2control.up) then
  919. danger = "2down"
  920. danger2 = "2up"
  921. elseif (p2control.down == p2control.super) then
  922. danger = "2down"
  923. danger2 = "2special"
  924. elseif (p2control.down == p2control.counter) then
  925. danger = "2down"
  926. danger2 = "2ct"
  927. elseif (p2control.up == p2control.super) then
  928. danger = "2up"
  929. danger2 = "2special"
  930. elseif (p2control.up == p2control.counter) then
  931. danger = "2ct"
  932. danger2 = "2up"
  933. elseif (p2control.super == p2control.counter) then
  934. danger = "2special"
  935. danger2 = "2ct"
  936. else
  937. danger = "none"
  938. danger2 = "none"
  939. end
  940. end
  941. function love.keypressed(key)
  942. lastSentKey = key
  943. if gameState == "chooseIP" then
  944. if key == "backspace" then
  945. -- get the byte offset to the last UTF-8 character in the string.
  946. local byteoffset = utf8.offset(IP, -1)
  947. if byteoffset then
  948. -- remove the last UTF-8 character.
  949. -- string.sub operates on bytes rather than UTF-8 characters, so we couldn't do string.sub(text, 1, -2).
  950. IP = string.sub(IP, 1, byteoffset - 1)
  951. end
  952. end
  953. end
  954. if gameState == "assign" then
  955. if (req == "p1up") then
  956. p1control.up = key
  957. currentKey = key
  958. --love.window.setTitle(key)
  959. gameState = "controlSettings"
  960. end
  961. if (req == "p2up") then
  962. p2control.up = key
  963. currentKey = key
  964. --love.window.setTitle(key)
  965. gameState = "controlSettings"
  966. end
  967. if (req == "p1down") then
  968. p1control.down = key
  969. currentKey = key
  970. --love.window.setTitle(key)
  971. gameState = "controlSettings"
  972. end
  973. if (req == "p2down") then
  974. p2control.down = key
  975. currentKey = key
  976. -- love.window.setTitle(key)
  977. gameState = "controlSettings"
  978. end
  979. if (req == "p1super") then
  980. p1control.super = key
  981. currentKey = key
  982. -- love.window.setTitle(key)
  983. gameState = "controlSettings"
  984. end
  985. if (req == "p2super") then
  986. p2control.super = key
  987. currentKey = key
  988. -- love.window.setTitle(key)
  989. gameState = "controlSettings"
  990. end
  991. if (req == "p1ct") then
  992. p1control.counter = key
  993. currentKey = key
  994. -- love.window.setTitle(key)
  995. gameState = "controlSettings"
  996. end
  997. if (req == "p2ct") then
  998. p2control.counter = key
  999. currentKey = key
  1000. --love.window.setTitle(key)
  1001. gameState = "controlSettings"
  1002. end
  1003. end
  1004. if key == "escape" then
  1005. TEXT = "Escape Key"
  1006. love.event.quit()
  1007. elseif key == "enter" or key == "return" then
  1008. if gameState == "start" then
  1009. resettinggenius()
  1010. gameState = "menu"
  1011. globalState = "menu"
  1012. hardmanager()
  1013. elseif (gameState == "done") then
  1014. if (player1score > player2score) then
  1015. gameState = "2serve"
  1016. potentialnuke1 = 0
  1017. potentialnuke2 = 0
  1018. striken = 0
  1019. if (nuckemodactive == 0) then
  1020. areanuclear = 0
  1021. nuclearanimation = 3
  1022. end
  1023. potentialstrike1 = 0
  1024. potentialstrike2 = 0
  1025. player1nukescore = 0
  1026. player2nukescore = 0
  1027. else
  1028. gameState = "1serve"
  1029. resettinggenius()
  1030. for i = 1, maxBalls do
  1031. ball[i]:reset(i)
  1032. end
  1033. end
  1034. else
  1035. gameState = "menu"
  1036. globalState = "menu"
  1037. if (love.math.random(0, 10) == 1) then
  1038. TEXT = "Nuclear Ching Chong"
  1039. else
  1040. TEXT = "Nuclear Pong"
  1041. end
  1042. resettinggenius()
  1043. for i = 1, maxBalls do
  1044. ball[i]:reset(i)
  1045. end
  1046. end
  1047. end
  1048. end
  1049. function love.keyreleased(key)
  1050. currentKey = " "
  1051. if lastSentKey == key then
  1052. lastSentKey = "g"
  1053. end
  1054. end
  1055. function speedSetter(requesttype)
  1056. if (requesttype == "ball") then
  1057. if (ballSet > 550) then
  1058. ballSet = 0
  1059. paddle_SPEED = 0
  1060. else
  1061. ballSet = ballSet + 50
  1062. paddle_SPEED = paddle_SPEED + 5
  1063. end
  1064. ballSpeed = ballSet
  1065. end
  1066. if (requesttype == "snc") then
  1067. synctype = synctype + 1
  1068. if (synctype > 1) then
  1069. synctype = 0
  1070. end
  1071. if synctype == 0 then
  1072. synctext = "Independent"
  1073. end
  1074. if synctype == 1 then
  1075. synctext = "Synchronised"
  1076. end
  1077. end
  1078. if (requesttype == "nuclearmod") then
  1079. nuckemodactive = nuckemodactive + 1
  1080. if (nuckemodactive > 1) then
  1081. nuckemodactive = 0
  1082. end
  1083. if (nuckemodactive == 0) then
  1084. areanuclear = 0
  1085. nuclearanimation = 3
  1086. ballSet = 200
  1087. TEXT = "Nuclear Pong"
  1088. synctype = 0
  1089. maxspeed = 700
  1090. synctext = "Independent"
  1091. paddle_SPEED = ballSet / 10
  1092. AI_SPEED = ballSet / 10
  1093. end
  1094. if (nuckemodactive == 1) then
  1095. areanuclear = 1
  1096. ballSet = 2000
  1097. maxspeed = 2000
  1098. paddle_SPEED = ballSet / 10
  1099. AI_SPEED = ballSet / 10
  1100. synctext = "death is imminent"
  1101. end
  1102. ballSpeed = ballSet
  1103. end
  1104. if (requesttype == "practice") then
  1105. if (ballSpeed > 999) then
  1106. ballSpeed = 200
  1107. ballSet = 200
  1108. end
  1109. if (ballSpeed > 799) then
  1110. prtext = "Insane"
  1111. maxBalls = 5
  1112. elseif ballSpeed > 599 then
  1113. prtext = "Hard"
  1114. maxBalls = 4
  1115. elseif ballSpeed > 399 then
  1116. prtext = "Normal"
  1117. maxBalls = 3
  1118. elseif ballSpeed > 199 then
  1119. prtext = "Easy"
  1120. maxBalls = 3
  1121. end
  1122. ballSpeed = ballSpeed + 200
  1123. ballSet = ballSet + 200
  1124. end
  1125. if (requesttype == "reset") then
  1126. ballSpeed = 200
  1127. ballSet = 200
  1128. synctype = 0
  1129. prtext = "Easy"
  1130. maxBalls = 1
  1131. end
  1132. if (requesttype == "pc") then
  1133. if (playerCount == 2) then
  1134. playerCount = 1
  1135. playertext = "1v1"
  1136. elseif (playerCount == 1) then
  1137. playerCount = playerCount + 1
  1138. player3.x = player1.x + VIRTUAL_WIDTH / 2
  1139. player3.y = player3.y
  1140. playertext = "2v2"
  1141. end
  1142. end
  1143. if (requesttype == "ballz") then
  1144. if (maxBalls > 1) then
  1145. --love.window.setTitle("more than 4")
  1146. maxBalls = 1
  1147. else
  1148. maxBalls = maxBalls + 1
  1149. end
  1150. end
  1151. if requesttype == "ptw" then
  1152. if ptw == 10 then
  1153. ptw = 1
  1154. else
  1155. ptw = ptw + 1
  1156. end
  1157. end
  1158. end
  1159. function gameModeChanger()
  1160. if (gameState == "gameMode") then
  1161. local button_width = VIRTUAL_WIDTH * (1 / 3)
  1162. local BUTTON_HEIGHT = 50
  1163. local margin = 20
  1164. local hot = false
  1165. local cursor_y = 0
  1166. local total_height = (BUTTON_HEIGHT + margin) * #buttons
  1167. for i, button in ipairs(modeSelectorButtons) do
  1168. button.last = button.now
  1169. local bx = (VIRTUAL_WIDTH * 0.5) - (button_width * 0.5)
  1170. local by = (VIRTUAL_HEIGHT * 0.5) - (total_height * 0.5) + cursor_y
  1171. local color = {255, 255, 255, 255}
  1172. local mx, my = love.mouse.getPosition()
  1173. mx = mx * DIFFERENCE_X
  1174. my = my * DIFFERENCE_Y
  1175. hot = (mx > bx and mx < bx + button_width and my > by and my < by + BUTTON_HEIGHT) and i
  1176. if (hot == i) then
  1177. color = {10, 10, 0, 255}
  1178. end
  1179. button.now = love.mouse.isDown(1)
  1180. if button.now and not button.last and hot == i then
  1181. love.graphics.setColor(0, 0, 0, 1)
  1182. love.graphics.rectangle("fill", 0, 0, VIRTUAL_WIDTH, VIRTUAL_HEIGHT)
  1183. sounds["wallhit"]:play()
  1184. button.fn()
  1185. end
  1186. love.graphics.setColor(unpack(color))
  1187. love.graphics.rectangle("fill", bx, by, button_width, BUTTON_HEIGHT)
  1188. love.graphics.setColor(0, 0, 0, 255)
  1189. local textW = smallfont:getWidth(button.text)
  1190. local textH = smallfont:getHeight(button.text)
  1191. love.graphics.print(button.text, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1192. love.graphics.setColor(255, 255, 255, 255)
  1193. cursor_y = cursor_y + (BUTTON_HEIGHT + margin)
  1194. end
  1195. end
  1196. if (gameState == "multiMode") then
  1197. local button_width = VIRTUAL_WIDTH * (1 / 3)
  1198. local BUTTON_HEIGHT = 50
  1199. local margin = 20
  1200. local hot = false
  1201. local cursor_y = 0
  1202. local total_height = (BUTTON_HEIGHT + margin) * #buttons
  1203. for i, button in ipairs(playerCountButtons) do
  1204. button.last = button.now
  1205. local bx = (VIRTUAL_WIDTH * 0.5) - (button_width * 0.5)
  1206. local by = (VIRTUAL_HEIGHT * 0.3) - (total_height * 0.5) + cursor_y
  1207. if (button.text == "Play") then
  1208. by = by + by / 1.8
  1209. end
  1210. local color = {255, 255, 255, 255}
  1211. local mx, my = love.mouse.getPosition()
  1212. mx = mx * DIFFERENCE_X
  1213. my = my * DIFFERENCE_Y
  1214. hot = (mx > bx and mx < bx + button_width and my > by and my < by + BUTTON_HEIGHT) and i
  1215. if (hot == i) then
  1216. if (button.text == "Play") then
  1217. color = {0 / 255, 255 / 255, 0 / 255, 255}
  1218. else
  1219. color = {10, 10, 0, 255}
  1220. end
  1221. end
  1222. button.now = love.mouse.isDown(1)
  1223. if button.now and not button.last and hot == i then
  1224. love.graphics.setColor(0, 0, 0, 1)
  1225. love.graphics.rectangle("fill", 0, 0, VIRTUAL_WIDTH, VIRTUAL_HEIGHT)
  1226. sounds["wallhit"]:play()
  1227. if button.text == "Ball Speed: " and nuckemodactive == 1 then
  1228. else
  1229. button.fn()
  1230. end
  1231. end
  1232. love.graphics.setColor(unpack(color))
  1233. love.graphics.rectangle("fill", bx, by, button_width, BUTTON_HEIGHT)
  1234. love.graphics.setColor(0, 0, 0, 255)
  1235. local textW = smallfont:getWidth(button.text)
  1236. local textH = smallfont:getHeight(button.text)
  1237. if (button.text == "1v1") then
  1238. love.graphics.print(playertext, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1239. elseif button.text == "snc" then
  1240. if (nuckemodactive == 1) then
  1241. love.graphics.setColor(1, 0, 0, 1)
  1242. love.graphics.print(synctext, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1243. love.graphics.setColor(1, 1, 1, 1)
  1244. love.graphics.print(synctext, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1245. love.graphics.setColor(0, 0, 0, 1)
  1246. else
  1247. --
  1248. love.graphics.print(synctext, smallfont, VIRTUAL_WIDTH * 0.45 - textW * 0.5, by + textH * 0.5)
  1249. end
  1250. elseif (button.text == "ballCount") then
  1251. love.graphics.print(
  1252. "Ball Count: " .. maxBalls,
  1253. smallfont,
  1254. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1255. by + textH * 0.5
  1256. )
  1257. elseif (button.text == "Ball Speed: ") then
  1258. if (nuckemodactive == 1) then
  1259. love.graphics.setColor(1, 0, 0, 1)
  1260. love.graphics.print(
  1261. "shaitan machina",
  1262. smallfont,
  1263. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1264. by + textH * 0.5
  1265. )
  1266. love.graphics.setColor(1, 1, 1, 1)
  1267. love.graphics.print(
  1268. "shaitan machina",
  1269. smallfont,
  1270. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1271. by + textH * 0.5
  1272. )
  1273. love.graphics.setColor(0, 0, 0, 1)
  1274. else
  1275. love.graphics.print(
  1276. button.text .. ballSet,
  1277. smallfont,
  1278. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1279. by + textH * 0.5
  1280. )
  1281. end
  1282. elseif button.text == "ptw" then
  1283. love.graphics.print(
  1284. "Points to Win: " .. ptw,
  1285. smallfont,
  1286. VIRTUAL_WIDTH * 0.5 - textW * 1.5,
  1287. by + textH * 0.5
  1288. )
  1289. else
  1290. love.graphics.print(button.text, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1291. end
  1292. love.graphics.setColor(255, 255, 255, 255)
  1293. cursor_y = cursor_y + (BUTTON_HEIGHT + margin)
  1294. end
  1295. end
  1296. end
  1297. function love.draw()
  1298. simpleScale.set()
  1299. baseDraw()
  1300. if (globalState == "nettest" or globalState == "clienttest") and confirmation == "D" then
  1301. love.graphics.clear(50 / 255, 50 / 255, 50 / 255, 255)
  1302. love.graphics.printf("WAIT FOR PLAYER 2", 0, VIRTUAL_HEIGHT / 2, VIRTUAL_WIDTH, "center")
  1303. end
  1304. if (globalState == "nettest" or globalState == "clienttest") and confirmation == "U" then
  1305. love.graphics.clear(50 / 255, 50 / 255, 50 / 255, 255)
  1306. love.graphics.printf("LOBBY FULL OR WRONG MODE CHOSEN", 0, VIRTUAL_HEIGHT / 2, VIRTUAL_WIDTH, "center")
  1307. end
  1308. if (globalState == "nettest" or globalState == "clienttest") and confirmation == "L" then
  1309. love.graphics.clear(50 / 255, 50 / 255, 50 / 255, 255)
  1310. love.graphics.printf("POOR CONNECTION TO SERVER", 0, VIRTUAL_HEIGHT / 2, VIRTUAL_WIDTH, "center")
  1311. end
  1312. simpleScale.unSet()
  1313. end
  1314. --Check if controls are duplicating
  1315. function controllerSer()
  1316. for i = 1, maxBalls do
  1317. if (ball[i].dy == 0) then
  1318. hitNum[i] = hitNum[i] + 1
  1319. if hitNum[i] >= 10 then
  1320. ball[i].dy = 1
  1321. hitNum[i] = 0
  1322. end
  1323. else
  1324. hitNum[i] = 0
  1325. end
  1326. end
  1327. end
  1328. function palleteController() --!!!!LEGACY CODE, MIGRATED TO Paddle.lua!!!!
  1329. if (areanuclear == 0) then
  1330. player1.RED = 1
  1331. player1.GREEN = 1
  1332. player1.BLUE = 1
  1333. end
  1334. if (areanuclear == 0) then
  1335. player2.RED = 1
  1336. player2.GREEN = 1
  1337. player2.BLUE = 1
  1338. end
  1339. if (areanuclear == 1) then
  1340. player1.RED = 0
  1341. player1.GREEN = 0
  1342. player1.BLUE = 0
  1343. end
  1344. if (areanuclear == 1) then
  1345. player2.RED = 0
  1346. player2.GREEN = 0
  1347. player2.BLUE = 0
  1348. end
  1349. end
  1350. function love.wheelmoved(x, y)
  1351. if (y < 0 and wall1width > 0) then
  1352. wall1width = wall1width - 5
  1353. elseif y > 0 and wall1width < 900 then
  1354. wall1width = wall1width + 5
  1355. end
  1356. end
  1357. function serveBot() --THIS IS USED TO CHANGE TEXT/BALL DIRECTION ON DIFFERENT SERVES
  1358. --print("servebot called")
  1359. if (gameState == "1serve") then
  1360. updateTEXT = ""
  1361. if (gameMode ~= "practice") then
  1362. TEXT = "PLAYER 1, serve!(q)"
  1363. end
  1364. if ((globalState ~= "clienttest" and love.keyboard.isDown("q")) or (globalState == "clienttest" and lastSentKeyP1 == "q")) then
  1365. TEXT = "Lets Begin!"
  1366. ball_DIR = 1
  1367. for i = 1, maxBalls do
  1368. ball[i]:reset(i)
  1369. end
  1370. gameState = "play"
  1371. end
  1372. end
  1373. if (gameState == "2serve") then
  1374. TEXT = "PLAYER 2, serve!(p)"
  1375. if (AGAINST_AI == 1) then
  1376. TEXT = ""
  1377. ball_DIR = -1
  1378. for i = 1, maxBalls do
  1379. ball[i]:reset(i)
  1380. end
  1381. gameState = "play"
  1382. end
  1383. if (((globalState == "nettest" and lastSentKeyClient == "p") or ((globalState ~= "nettest") and love.keyboard.isDown("p")))and AGAINST_AI == 0) then
  1384. TEXT = "Lets Begin"
  1385. ball_DIR = -1
  1386. for i = 1, maxBalls do
  1387. ball[i]:reset(i)
  1388. end
  1389. --love.window.setTitle("An atttttttt")
  1390. gameState = "play"
  1391. end
  1392. end
  1393. end
  1394. function mapChanger()
  1395. if (gameState == "editor") then
  1396. MAP_TYPE = 2
  1397. end
  1398. if (MAP_TYPE > 2) then
  1399. MAP_TYPE = 0
  1400. end
  1401. end
  1402. function resolutionChanger()
  1403. if (RESOLUTION_SET > 1) then
  1404. RESOLUTION_SET = 0
  1405. end
  1406. if (RESOLUTION_SET == 0) then
  1407. if (isFullscreen == 1) then
  1408. DIFFERENCE_X = 1
  1409. DIFFERENCE_Y = 1
  1410. simpleScale.updateWindow(WINDOW_WIDTH, WINDOW_HEIGHT, {fullscreen = false})
  1411. isFullscreen = 0
  1412. end
  1413. end
  1414. if (RESOLUTION_SET == 1) then
  1415. if (isFullscreen == 0) then
  1416. simpleScale.updateWindow(WINDOW_WIDTH, WINDOW_HEIGHT, {fullscreen = true})
  1417. local newWidth = love.graphics.getWidth()
  1418. local newHeight = love.graphics.getHeight()
  1419. DIFFERENCE_X = VIRTUAL_WIDTH / newWidth
  1420. DIFFERENCE_Y = VIRTUAL_HEIGHT / newHeight
  1421. isFullscreen = 1
  1422. end
  1423. end
  1424. end
  1425. function resettinggenius()
  1426. maxBalls = 1
  1427. for i = 1, maxBalls do
  1428. ball[i]:reset(i)
  1429. end
  1430. paddle_SPEED = 20
  1431. nuclearanimation = 3
  1432. timeIsSlow = false
  1433. timeIsSlow2 = false
  1434. originalSpeed = 200
  1435. gameState = "menu"
  1436. globalState = "menu"
  1437. gameMode = "normal"
  1438. player1.height = 100
  1439. player2.height = 100
  1440. ballSet = 200
  1441. ballSpeed = ballSet
  1442. player2.GREEN = 255
  1443. player2.BLUE = 255
  1444. player1.GREEN = 255
  1445. player1.BLUE = 255
  1446. player1score = 0
  1447. player2score = 0
  1448. potentialnuke1 = 0
  1449. potentialnuke2 = 0
  1450. striken = 0
  1451. areanuclear = 0
  1452. potentialstrike1 = 0
  1453. potentialstrike2 = 0
  1454. player1nukescore = 0
  1455. player2nukescore = 0
  1456. player1reverbav = 0
  1457. player2reverbav = 0
  1458. selecting = 0
  1459. AGAINST_AI = 0
  1460. end
  1461. function love.mousereleased(x, y, button)
  1462. love.keyboard.mouseisReleased = true
  1463. if (gameState == "editor") then
  1464. if (#walls < 1000 and button == 1 and blockinput ~= true) then
  1465. table.insert(walls, newWall(x * DIFFERENCE_X, y * DIFFERENCE_Y, 10, wall1width))
  1466. end
  1467. end
  1468. end
  1469. function ballsAlive()
  1470. for i = 1, maxBalls do
  1471. if ball[i].disabled == false then
  1472. print("Ball " .. i .. " is not disabled")
  1473. return true
  1474. end
  1475. end
  1476. return false
  1477. end
  1478. function split(s, delimiter)
  1479. result = {}
  1480. for match in (s..delimiter):gmatch("(.-)"..delimiter) do
  1481. table.insert(result, match)
  1482. end
  1483. return result
  1484. end