Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1539 Zeilen
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. repeat
  764. datanumtest = datanumtest + 1
  765. print("LATENCY: " .. tostring(datanumtest))
  766. data = udp:receive()
  767. if data then
  768. confirmation = "N"
  769. local p = split(data, '|')
  770. if p[3] ~= "CLIENT" then
  771. confirmation = "U"
  772. end
  773. if tonumber(p[4]) > 90 then
  774. confirmation = "L"
  775. end
  776. lastSentKeyClient = p[1]
  777. player2.y = tonumber(p[2])
  778. else
  779. confirmation = "D"
  780. print("NO PLAYER 2!!")
  781. end
  782. until not data
  783. end
  784. function clienttest(dt)
  785. if clientinit == false then
  786. local socket = require "socket"
  787. local address, port = IP, 12345
  788. udp = socket.udp()
  789. udp:setpeername(address, port)
  790. udp:settimeout(0)
  791. udp:send(tostring(lastSentKey) .. '|' .. tostring(player2.y) .. "|CLIENT")
  792. clientinit = true
  793. end
  794. ts = ts + dt
  795. if ts > updaterate then
  796. udp:send(tostring(lastSentKey) .. '|' .. tostring(player2.y) .. "|CLIENT")
  797. ts = 0
  798. end
  799. local data
  800. local datanumtest = 0
  801. repeat
  802. datanumtest = datanumtest + 1
  803. print("LATENCY: " .. tostring(datanumtest))
  804. data = udp:receive()
  805. if data then
  806. print(data)
  807. print("SENT TO SERVER:" .. lastSentKey)
  808. confirmation = "N"
  809. local p = split(data, '|')
  810. if p[13] then
  811. if p[13] ~= "HOST" then
  812. confirmation = "U"
  813. end
  814. if tonumber(p[14]) > 5 then
  815. confirmation = "L"
  816. end
  817. for i = 1, maxBalls do
  818. local die = tonumber(p[2])
  819. 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])
  820. end
  821. end
  822. else
  823. confirmation = "D"
  824. end
  825. print("GOT: " .. lastSentKeyClient)
  826. until not data
  827. end
  828. function wallbreaker(x, y)
  829. if (gameState == "editor") then
  830. for i, wall in ipairs(walls) do
  831. if math.abs(wall.wallx - x) < 10 and math.abs(wall.wally - y) < 10 then
  832. table.remove(walls, i)
  833. end
  834. end
  835. end
  836. end
  837. function hardmanager(diff)
  838. selecting = 1
  839. if (diff == "easy") then
  840. INDIC[1] = ">"
  841. AGAINST_AI = 1
  842. AI_SPEED = ballSet / 10
  843. AI_STRIKEMOD = 100
  844. AI_NUKEMOD = 1000
  845. AI_LEVEL = 350
  846. difficultyl = 200
  847. selecting = 0
  848. gameState = "1serve"
  849. globalState = "base"
  850. end
  851. if (diff == "normal") then
  852. INDIC[2] = ">"
  853. AI_SPEED = ballSet / 10
  854. AI_LEVEL = 500
  855. AI_NUKEMOD = 250
  856. AI_STRIKEMOD = 60
  857. AGAINST_AI = 1
  858. difficultyl = 300
  859. selecting = 0
  860. gameState = "1serve"
  861. globalState = "base"
  862. end
  863. if (diff == "hard") then
  864. INDIC[3] = ">"
  865. AI_SPEED = ballSpeed * 1.1 + 50
  866. AI_SPEED = AI_SPEED / 10
  867. AI_LEVEL = 700
  868. AI_NUKEMOD = 200
  869. AI_STRIKEMOD = 20
  870. selecting = 0
  871. difficultyl = 350
  872. AGAINST_AI = 1
  873. gameState = "1serve"
  874. globalState = "base"
  875. end
  876. if (diff == "smart") then
  877. INDIC[3] = ">"
  878. AI_SPEED = ballSpeed * 1.1 + 50
  879. AI_SPEED = AI_SPEED / 10
  880. AI_LEVEL = 1500
  881. AI_NUKEMOD = 200
  882. AI_STRIKEMOD = 20
  883. selecting = 0
  884. difficultyl = 350
  885. AGAINST_AI = 1
  886. gameState = "1serve"
  887. globalState = "base"
  888. end
  889. if (diff == "practice") then
  890. INDIC[3] = ">"
  891. AI_SPEED = ballSpeed * 500 + 50
  892. AI_SPEED = AI_SPEED / 10
  893. AI_LEVEL = 700
  894. AI_NUKEMOD = 9000000000
  895. AI_STRIKEMOD = 90000000
  896. selecting = 0
  897. difficultyl = 350
  898. AGAINST_AI = 1
  899. gameState = "base"
  900. end
  901. end
  902. function dangerChecker() --CHECK IF CONTROLS ARE DUPLICATING
  903. if (p1control.up == p1control.down) then
  904. danger = "1up"
  905. danger2 = "1down"
  906. elseif (p1control.up == p1control.super) then
  907. danger = "1up"
  908. danger2 = "1special"
  909. elseif (p1control.up == p1control.counter) then
  910. danger = "1up"
  911. danger2 = "1ct"
  912. elseif (p1control.down == p1control.super) then
  913. danger = "1down"
  914. danger2 = "1special"
  915. elseif (p1control.down == p1control.counter) then
  916. danger = "1ct"
  917. danger2 = "1down"
  918. elseif (p1control.super == p1control.counter) then
  919. danger = "1special"
  920. danger2 = "1ct"
  921. elseif (p2control.down == p2control.up) then
  922. danger = "2down"
  923. danger2 = "2up"
  924. elseif (p2control.down == p2control.super) then
  925. danger = "2down"
  926. danger2 = "2special"
  927. elseif (p2control.down == p2control.counter) then
  928. danger = "2down"
  929. danger2 = "2ct"
  930. elseif (p2control.up == p2control.super) then
  931. danger = "2up"
  932. danger2 = "2special"
  933. elseif (p2control.up == p2control.counter) then
  934. danger = "2ct"
  935. danger2 = "2up"
  936. elseif (p2control.super == p2control.counter) then
  937. danger = "2special"
  938. danger2 = "2ct"
  939. else
  940. danger = "none"
  941. danger2 = "none"
  942. end
  943. end
  944. function love.keypressed(key)
  945. lastSentKey = key
  946. if gameState == "chooseIP" then
  947. if key == "backspace" then
  948. -- get the byte offset to the last UTF-8 character in the string.
  949. local byteoffset = utf8.offset(IP, -1)
  950. if byteoffset then
  951. -- remove the last UTF-8 character.
  952. -- string.sub operates on bytes rather than UTF-8 characters, so we couldn't do string.sub(text, 1, -2).
  953. IP = string.sub(IP, 1, byteoffset - 1)
  954. end
  955. end
  956. end
  957. if gameState == "assign" then
  958. if (req == "p1up") then
  959. p1control.up = key
  960. currentKey = key
  961. --love.window.setTitle(key)
  962. gameState = "controlSettings"
  963. end
  964. if (req == "p2up") then
  965. p2control.up = key
  966. currentKey = key
  967. --love.window.setTitle(key)
  968. gameState = "controlSettings"
  969. end
  970. if (req == "p1down") then
  971. p1control.down = key
  972. currentKey = key
  973. --love.window.setTitle(key)
  974. gameState = "controlSettings"
  975. end
  976. if (req == "p2down") then
  977. p2control.down = key
  978. currentKey = key
  979. -- love.window.setTitle(key)
  980. gameState = "controlSettings"
  981. end
  982. if (req == "p1super") then
  983. p1control.super = key
  984. currentKey = key
  985. -- love.window.setTitle(key)
  986. gameState = "controlSettings"
  987. end
  988. if (req == "p2super") then
  989. p2control.super = key
  990. currentKey = key
  991. -- love.window.setTitle(key)
  992. gameState = "controlSettings"
  993. end
  994. if (req == "p1ct") then
  995. p1control.counter = key
  996. currentKey = key
  997. -- love.window.setTitle(key)
  998. gameState = "controlSettings"
  999. end
  1000. if (req == "p2ct") then
  1001. p2control.counter = key
  1002. currentKey = key
  1003. --love.window.setTitle(key)
  1004. gameState = "controlSettings"
  1005. end
  1006. end
  1007. if key == "escape" then
  1008. TEXT = "Escape Key"
  1009. love.event.quit()
  1010. elseif key == "enter" or key == "return" then
  1011. if gameState == "start" then
  1012. resettinggenius()
  1013. gameState = "menu"
  1014. globalState = "menu"
  1015. hardmanager()
  1016. elseif (gameState == "done") then
  1017. if (player1score > player2score) then
  1018. gameState = "2serve"
  1019. potentialnuke1 = 0
  1020. potentialnuke2 = 0
  1021. striken = 0
  1022. if (nuckemodactive == 0) then
  1023. areanuclear = 0
  1024. nuclearanimation = 3
  1025. end
  1026. potentialstrike1 = 0
  1027. potentialstrike2 = 0
  1028. player1nukescore = 0
  1029. player2nukescore = 0
  1030. else
  1031. gameState = "1serve"
  1032. resettinggenius()
  1033. for i = 1, maxBalls do
  1034. ball[i]:reset(i)
  1035. end
  1036. end
  1037. else
  1038. gameState = "menu"
  1039. globalState = "menu"
  1040. if (love.math.random(0, 10) == 1) then
  1041. TEXT = "Nuclear Ching Chong"
  1042. else
  1043. TEXT = "Nuclear Pong"
  1044. end
  1045. resettinggenius()
  1046. for i = 1, maxBalls do
  1047. ball[i]:reset(i)
  1048. end
  1049. end
  1050. end
  1051. end
  1052. function love.keyreleased(key)
  1053. currentKey = " "
  1054. if lastSentKey == key then
  1055. lastSentKey = "g"
  1056. end
  1057. end
  1058. function speedSetter(requesttype)
  1059. if (requesttype == "ball") then
  1060. if (ballSet > 550) then
  1061. ballSet = 0
  1062. paddle_SPEED = 0
  1063. else
  1064. ballSet = ballSet + 50
  1065. paddle_SPEED = paddle_SPEED + 5
  1066. end
  1067. ballSpeed = ballSet
  1068. end
  1069. if (requesttype == "snc") then
  1070. synctype = synctype + 1
  1071. if (synctype > 1) then
  1072. synctype = 0
  1073. end
  1074. if synctype == 0 then
  1075. synctext = "Independent"
  1076. end
  1077. if synctype == 1 then
  1078. synctext = "Synchronised"
  1079. end
  1080. end
  1081. if (requesttype == "nuclearmod") then
  1082. nuckemodactive = nuckemodactive + 1
  1083. if (nuckemodactive > 1) then
  1084. nuckemodactive = 0
  1085. end
  1086. if (nuckemodactive == 0) then
  1087. areanuclear = 0
  1088. nuclearanimation = 3
  1089. ballSet = 200
  1090. TEXT = "Nuclear Pong"
  1091. synctype = 0
  1092. maxspeed = 700
  1093. synctext = "Independent"
  1094. paddle_SPEED = ballSet / 10
  1095. AI_SPEED = ballSet / 10
  1096. end
  1097. if (nuckemodactive == 1) then
  1098. areanuclear = 1
  1099. ballSet = 2000
  1100. maxspeed = 2000
  1101. paddle_SPEED = ballSet / 10
  1102. AI_SPEED = ballSet / 10
  1103. synctext = "death is imminent"
  1104. end
  1105. ballSpeed = ballSet
  1106. end
  1107. if (requesttype == "practice") then
  1108. if (ballSpeed > 999) then
  1109. ballSpeed = 200
  1110. ballSet = 200
  1111. end
  1112. if (ballSpeed > 799) then
  1113. prtext = "Insane"
  1114. maxBalls = 5
  1115. elseif ballSpeed > 599 then
  1116. prtext = "Hard"
  1117. maxBalls = 4
  1118. elseif ballSpeed > 399 then
  1119. prtext = "Normal"
  1120. maxBalls = 3
  1121. elseif ballSpeed > 199 then
  1122. prtext = "Easy"
  1123. maxBalls = 3
  1124. end
  1125. ballSpeed = ballSpeed + 200
  1126. ballSet = ballSet + 200
  1127. end
  1128. if (requesttype == "reset") then
  1129. ballSpeed = 200
  1130. ballSet = 200
  1131. synctype = 0
  1132. prtext = "Easy"
  1133. maxBalls = 1
  1134. end
  1135. if (requesttype == "pc") then
  1136. if (playerCount == 2) then
  1137. playerCount = 1
  1138. playertext = "1v1"
  1139. elseif (playerCount == 1) then
  1140. playerCount = playerCount + 1
  1141. player3.x = player1.x + VIRTUAL_WIDTH / 2
  1142. player3.y = player3.y
  1143. playertext = "2v2"
  1144. end
  1145. end
  1146. if (requesttype == "ballz") then
  1147. if (maxBalls > 1) then
  1148. --love.window.setTitle("more than 4")
  1149. maxBalls = 1
  1150. else
  1151. maxBalls = maxBalls + 1
  1152. end
  1153. end
  1154. if requesttype == "ptw" then
  1155. if ptw == 10 then
  1156. ptw = 1
  1157. else
  1158. ptw = ptw + 1
  1159. end
  1160. end
  1161. end
  1162. function gameModeChanger()
  1163. if (gameState == "gameMode") then
  1164. local button_width = VIRTUAL_WIDTH * (1 / 3)
  1165. local BUTTON_HEIGHT = 50
  1166. local margin = 20
  1167. local hot = false
  1168. local cursor_y = 0
  1169. local total_height = (BUTTON_HEIGHT + margin) * #buttons
  1170. for i, button in ipairs(modeSelectorButtons) do
  1171. button.last = button.now
  1172. local bx = (VIRTUAL_WIDTH * 0.5) - (button_width * 0.5)
  1173. local by = (VIRTUAL_HEIGHT * 0.5) - (total_height * 0.5) + cursor_y
  1174. local color = {255, 255, 255, 255}
  1175. local mx, my = love.mouse.getPosition()
  1176. mx = mx * DIFFERENCE_X
  1177. my = my * DIFFERENCE_Y
  1178. hot = (mx > bx and mx < bx + button_width and my > by and my < by + BUTTON_HEIGHT) and i
  1179. if (hot == i) then
  1180. color = {10, 10, 0, 255}
  1181. end
  1182. button.now = love.mouse.isDown(1)
  1183. if button.now and not button.last and hot == i then
  1184. love.graphics.setColor(0, 0, 0, 1)
  1185. love.graphics.rectangle("fill", 0, 0, VIRTUAL_WIDTH, VIRTUAL_HEIGHT)
  1186. sounds["wallhit"]:play()
  1187. button.fn()
  1188. end
  1189. love.graphics.setColor(unpack(color))
  1190. love.graphics.rectangle("fill", bx, by, button_width, BUTTON_HEIGHT)
  1191. love.graphics.setColor(0, 0, 0, 255)
  1192. local textW = smallfont:getWidth(button.text)
  1193. local textH = smallfont:getHeight(button.text)
  1194. love.graphics.print(button.text, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1195. love.graphics.setColor(255, 255, 255, 255)
  1196. cursor_y = cursor_y + (BUTTON_HEIGHT + margin)
  1197. end
  1198. end
  1199. if (gameState == "multiMode") then
  1200. local button_width = VIRTUAL_WIDTH * (1 / 3)
  1201. local BUTTON_HEIGHT = 50
  1202. local margin = 20
  1203. local hot = false
  1204. local cursor_y = 0
  1205. local total_height = (BUTTON_HEIGHT + margin) * #buttons
  1206. for i, button in ipairs(playerCountButtons) do
  1207. button.last = button.now
  1208. local bx = (VIRTUAL_WIDTH * 0.5) - (button_width * 0.5)
  1209. local by = (VIRTUAL_HEIGHT * 0.3) - (total_height * 0.5) + cursor_y
  1210. if (button.text == "Play") then
  1211. by = by + by / 1.8
  1212. end
  1213. local color = {255, 255, 255, 255}
  1214. local mx, my = love.mouse.getPosition()
  1215. mx = mx * DIFFERENCE_X
  1216. my = my * DIFFERENCE_Y
  1217. hot = (mx > bx and mx < bx + button_width and my > by and my < by + BUTTON_HEIGHT) and i
  1218. if (hot == i) then
  1219. if (button.text == "Play") then
  1220. color = {0 / 255, 255 / 255, 0 / 255, 255}
  1221. else
  1222. color = {10, 10, 0, 255}
  1223. end
  1224. end
  1225. button.now = love.mouse.isDown(1)
  1226. if button.now and not button.last and hot == i then
  1227. love.graphics.setColor(0, 0, 0, 1)
  1228. love.graphics.rectangle("fill", 0, 0, VIRTUAL_WIDTH, VIRTUAL_HEIGHT)
  1229. sounds["wallhit"]:play()
  1230. if button.text == "Ball Speed: " and nuckemodactive == 1 then
  1231. else
  1232. button.fn()
  1233. end
  1234. end
  1235. love.graphics.setColor(unpack(color))
  1236. love.graphics.rectangle("fill", bx, by, button_width, BUTTON_HEIGHT)
  1237. love.graphics.setColor(0, 0, 0, 255)
  1238. local textW = smallfont:getWidth(button.text)
  1239. local textH = smallfont:getHeight(button.text)
  1240. if (button.text == "1v1") then
  1241. love.graphics.print(playertext, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1242. elseif button.text == "snc" then
  1243. if (nuckemodactive == 1) then
  1244. love.graphics.setColor(1, 0, 0, 1)
  1245. love.graphics.print(synctext, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1246. love.graphics.setColor(1, 1, 1, 1)
  1247. love.graphics.print(synctext, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1248. love.graphics.setColor(0, 0, 0, 1)
  1249. else
  1250. --
  1251. love.graphics.print(synctext, smallfont, VIRTUAL_WIDTH * 0.45 - textW * 0.5, by + textH * 0.5)
  1252. end
  1253. elseif (button.text == "ballCount") then
  1254. love.graphics.print(
  1255. "Ball Count: " .. maxBalls,
  1256. smallfont,
  1257. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1258. by + textH * 0.5
  1259. )
  1260. elseif (button.text == "Ball Speed: ") then
  1261. if (nuckemodactive == 1) then
  1262. love.graphics.setColor(1, 0, 0, 1)
  1263. love.graphics.print(
  1264. "shaitan machina",
  1265. smallfont,
  1266. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1267. by + textH * 0.5
  1268. )
  1269. love.graphics.setColor(1, 1, 1, 1)
  1270. love.graphics.print(
  1271. "shaitan machina",
  1272. smallfont,
  1273. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1274. by + textH * 0.5
  1275. )
  1276. love.graphics.setColor(0, 0, 0, 1)
  1277. else
  1278. love.graphics.print(
  1279. button.text .. ballSet,
  1280. smallfont,
  1281. VIRTUAL_WIDTH * 0.5 - textW * 0.5,
  1282. by + textH * 0.5
  1283. )
  1284. end
  1285. elseif button.text == "ptw" then
  1286. love.graphics.print(
  1287. "Points to Win: " .. ptw,
  1288. smallfont,
  1289. VIRTUAL_WIDTH * 0.5 - textW * 1.5,
  1290. by + textH * 0.5
  1291. )
  1292. else
  1293. love.graphics.print(button.text, smallfont, VIRTUAL_WIDTH * 0.5 - textW * 0.5, by + textH * 0.5)
  1294. end
  1295. love.graphics.setColor(255, 255, 255, 255)
  1296. cursor_y = cursor_y + (BUTTON_HEIGHT + margin)
  1297. end
  1298. end
  1299. end
  1300. function love.draw()
  1301. simpleScale.set()
  1302. baseDraw()
  1303. if (globalState == "nettest" or globalState == "clienttest") and confirmation == "D" then
  1304. love.graphics.clear(50 / 255, 50 / 255, 50 / 255, 255)
  1305. love.graphics.printf("WAIT FOR PLAYER 2", 0, VIRTUAL_HEIGHT / 2, VIRTUAL_WIDTH, "center")
  1306. end
  1307. if (globalState == "nettest" or globalState == "clienttest") and confirmation == "U" then
  1308. love.graphics.clear(50 / 255, 50 / 255, 50 / 255, 255)
  1309. love.graphics.printf("LOBBY FULL OR WRONG MODE CHOSEN", 0, VIRTUAL_HEIGHT / 2, VIRTUAL_WIDTH, "center")
  1310. end
  1311. if (globalState == "nettest" or globalState == "clienttest") and confirmation == "L" then
  1312. love.graphics.clear(50 / 255, 50 / 255, 50 / 255, 255)
  1313. love.graphics.printf("POOR CONNECTION TO SERVER", 0, VIRTUAL_HEIGHT / 2, VIRTUAL_WIDTH, "center")
  1314. end
  1315. simpleScale.unSet()
  1316. end
  1317. --Check if controls are duplicating
  1318. function controllerSer()
  1319. for i = 1, maxBalls do
  1320. if (ball[i].dy == 0) then
  1321. hitNum[i] = hitNum[i] + 1
  1322. if hitNum[i] >= 10 then
  1323. ball[i].dy = 1
  1324. hitNum[i] = 0
  1325. end
  1326. else
  1327. hitNum[i] = 0
  1328. end
  1329. end
  1330. end
  1331. function palleteController() --!!!!LEGACY CODE, MIGRATED TO Paddle.lua!!!!
  1332. if (areanuclear == 0) then
  1333. player1.RED = 1
  1334. player1.GREEN = 1
  1335. player1.BLUE = 1
  1336. end
  1337. if (areanuclear == 0) then
  1338. player2.RED = 1
  1339. player2.GREEN = 1
  1340. player2.BLUE = 1
  1341. end
  1342. if (areanuclear == 1) then
  1343. player1.RED = 0
  1344. player1.GREEN = 0
  1345. player1.BLUE = 0
  1346. end
  1347. if (areanuclear == 1) then
  1348. player2.RED = 0
  1349. player2.GREEN = 0
  1350. player2.BLUE = 0
  1351. end
  1352. end
  1353. function love.wheelmoved(x, y)
  1354. if (y < 0 and wall1width > 0) then
  1355. wall1width = wall1width - 5
  1356. elseif y > 0 and wall1width < 900 then
  1357. wall1width = wall1width + 5
  1358. end
  1359. end
  1360. function serveBot() --THIS IS USED TO CHANGE TEXT/BALL DIRECTION ON DIFFERENT SERVES
  1361. --print("servebot called")
  1362. if (gameState == "1serve") then
  1363. updateTEXT = ""
  1364. if (gameMode ~= "practice") then
  1365. TEXT = "PLAYER 1, serve!(q)"
  1366. end
  1367. if ((globalState ~= "clienttest" and love.keyboard.isDown("q")) or (globalState == "clienttest" and lastSentKeyP1 == "q")) then
  1368. TEXT = "Lets Begin!"
  1369. ball_DIR = 1
  1370. for i = 1, maxBalls do
  1371. ball[i]:reset(i)
  1372. end
  1373. gameState = "play"
  1374. end
  1375. end
  1376. if (gameState == "2serve") then
  1377. TEXT = "PLAYER 2, serve!(p)"
  1378. if (AGAINST_AI == 1) then
  1379. TEXT = ""
  1380. ball_DIR = -1
  1381. for i = 1, maxBalls do
  1382. ball[i]:reset(i)
  1383. end
  1384. gameState = "play"
  1385. end
  1386. if (((globalState == "nettest" and lastSentKeyClient == "p") or ((globalState ~= "nettest") and love.keyboard.isDown("p")))and AGAINST_AI == 0) then
  1387. TEXT = "Lets Begin"
  1388. ball_DIR = -1
  1389. for i = 1, maxBalls do
  1390. ball[i]:reset(i)
  1391. end
  1392. --love.window.setTitle("An atttttttt")
  1393. gameState = "play"
  1394. end
  1395. end
  1396. end
  1397. function mapChanger()
  1398. if (gameState == "editor") then
  1399. MAP_TYPE = 2
  1400. end
  1401. if (MAP_TYPE > 2) then
  1402. MAP_TYPE = 0
  1403. end
  1404. end
  1405. function resolutionChanger()
  1406. if (RESOLUTION_SET > 1) then
  1407. RESOLUTION_SET = 0
  1408. end
  1409. if (RESOLUTION_SET == 0) then
  1410. if (isFullscreen == 1) then
  1411. DIFFERENCE_X = 1
  1412. DIFFERENCE_Y = 1
  1413. simpleScale.updateWindow(WINDOW_WIDTH, WINDOW_HEIGHT, {fullscreen = false})
  1414. isFullscreen = 0
  1415. end
  1416. end
  1417. if (RESOLUTION_SET == 1) then
  1418. if (isFullscreen == 0) then
  1419. simpleScale.updateWindow(WINDOW_WIDTH, WINDOW_HEIGHT, {fullscreen = true})
  1420. local newWidth = love.graphics.getWidth()
  1421. local newHeight = love.graphics.getHeight()
  1422. DIFFERENCE_X = VIRTUAL_WIDTH / newWidth
  1423. DIFFERENCE_Y = VIRTUAL_HEIGHT / newHeight
  1424. isFullscreen = 1
  1425. end
  1426. end
  1427. end
  1428. function resettinggenius()
  1429. maxBalls = 1
  1430. for i = 1, maxBalls do
  1431. ball[i]:reset(i)
  1432. end
  1433. paddle_SPEED = 20
  1434. nuclearanimation = 3
  1435. timeIsSlow = false
  1436. timeIsSlow2 = false
  1437. originalSpeed = 200
  1438. gameState = "menu"
  1439. globalState = "menu"
  1440. gameMode = "normal"
  1441. player1.height = 100
  1442. player2.height = 100
  1443. ballSet = 200
  1444. ballSpeed = ballSet
  1445. player2.GREEN = 255
  1446. player2.BLUE = 255
  1447. player1.GREEN = 255
  1448. player1.BLUE = 255
  1449. player1score = 0
  1450. player2score = 0
  1451. potentialnuke1 = 0
  1452. potentialnuke2 = 0
  1453. striken = 0
  1454. areanuclear = 0
  1455. potentialstrike1 = 0
  1456. potentialstrike2 = 0
  1457. player1nukescore = 0
  1458. player2nukescore = 0
  1459. player1reverbav = 0
  1460. player2reverbav = 0
  1461. selecting = 0
  1462. AGAINST_AI = 0
  1463. end
  1464. function love.mousereleased(x, y, button)
  1465. love.keyboard.mouseisReleased = true
  1466. if (gameState == "editor") then
  1467. if (#walls < 1000 and button == 1 and blockinput ~= true) then
  1468. table.insert(walls, newWall(x * DIFFERENCE_X, y * DIFFERENCE_Y, 10, wall1width))
  1469. end
  1470. end
  1471. end
  1472. function ballsAlive()
  1473. for i = 1, maxBalls do
  1474. if ball[i].disabled == false then
  1475. print("Ball " .. i .. " is not disabled")
  1476. return true
  1477. end
  1478. end
  1479. return false
  1480. end
  1481. function split(s, delimiter)
  1482. result = {}
  1483. for match in (s..delimiter):gmatch("(.-)"..delimiter) do
  1484. table.insert(result, match)
  1485. end
  1486. return result
  1487. end