Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code is not working on Visual Studio code #56

Open
SabryPhys opened this issue Jun 22, 2020 · 10 comments
Open

Code is not working on Visual Studio code #56

SabryPhys opened this issue Jun 22, 2020 · 10 comments

Comments

@SabryPhys
Copy link

I am using visual studio code, as the instructor in first lecture,
but it didn't work
and i got this message
Exception has occurred: [C]:-1: attempt to index a nil value (global 'love')
stack traceback:
main.lua:29: in main chunk
[C]: in ?

@VKiNGpl
Copy link

VKiNGpl commented Jun 23, 2020

Please provide more details... how did you attempt to run in. What operating system are you running?
Do you have LOVE2D installed?
Did you add LUA plugin (Lua - keyring.lua)?
If you have LOVE2D installed you should be able to run the game by dropping the ENTIRE FOLDER containing particular main.lua onto love.exe or the shortcut to it. For example you can drop pong-0 onto love.exe to get the code running in love2d.
However the current git repo is using an outdated version of push.lua, so if you download the latest love2d version (11.3 as of now) you will still get an error. You need to update push.lua to v.0.4 to get the code running if everything else has been installed correctly.

@SabryPhys
Copy link
Author

I am using Windows 10, and i have visual studio 2017, when noticed that the instructor is using visual studio, i searched google for an extension for running love2D into visual studio,
https://marketplace.visualstudio.com/items?itemName=pixelbyte-studios.pixelbyte-love2d

when i clicked install it opens visual studio code window, in fact i am not sure if the plugin installed correctly or not, when first time i pressed F5 to run the code, t asked my about the interpreter, and i chosen Lua, and it starts running, as if the code stops at a break point or something at line 23, and an orange status bar down the window show no messages, then i pressed F5 again, and it gave me this message
Exception has occurred: [C]:-1: attempt to index a nil value (global 'love')
stack traceback:
main.lua:29: in main chunk
[C]: in ?

In fact, it will be very helpful and time saving if there is a step by step instruction and compile and run the code indifferent IDE's

@SabryPhys
Copy link
Author

and here is a new error message

image

@SabryPhys
Copy link
Author

image

@VKiNGpl
Copy link

VKiNGpl commented Jun 23, 2020

Unfortunately it is not possible to run the game using the 'run code' feature in VSC. You can run in using the terminal window in VSC but would need to either type out the full path to the love.exe each time or add love.exe to the win10 'path':
https://love2d.org/wiki/PATH
Then you would be able to use keyword 'love' instead of the full path.

There is a Love2d tutorial here:
https://love2d.org/wiki/Getting_Started
You may want to fallow this one and use one of the IDE's recommended by them.

You still need to make sure that you have the Love2d game engine installed, if you do try dropping the folder containing main.lua file onto love.exe and let me know what happens.

@Arxshot
Copy link

Arxshot commented Jul 10, 2020

I installed a few plugins and run/debug Love with VSCode on Windows 10, if it helps this is how my setup looks:

  1. Install Visual Studio Code

  2. Install LOVE

  3. Open VSCode, select Extensions on left menu toolbar (5th item down)

  4. Install Extension "Love2D Support" (pixelbyte studios)

  5. Install Extension "Local Lua Debugger" (Tom Blind)

  6. Install Extension "Lua" (keyring.lua)

  7. Select Explorer on left toolbar, open editor to your LOVE sources

  8. Add these two lines to the top of your main.lua to enable the debugger when you launch with debug.

    if pcall(require, "lldebugger") then require("lldebugger").start() end
    if pcall(require, "mobdebug") then require("mobdebug").start() end

  9. Select Run on left menu toolbar (4th item down)

  10. Select the "settings cog" next to Debug LOVE which should open a launch.json file. Set the program command to the appropriate path to LOVE. ie. Windows something like "C:\Program Files\LOVE\love.exe" or Macos, "/Applications/love.app/Contents/MacOS/love". an example launch.json shown below.

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lua-local",
            "request": "launch",
            "name": "Debug LOVE",
            "program":
            {
                "command": "C:\\Program Files\\LOVE\\love.exe"
            },
            "args": 
            [
                "${workspaceFolder}",
                "vsc_debug"
            ],
        },
    ]
}

@VKiNGpl
Copy link

VKiNGpl commented Jul 10, 2020

I did not install local lua debuger extension so I cannot advise of this one.
However I think you may be trying to run Love2D as if it was a lua debuger, and it is obviously not.
If you have the pixelbyte Love2D extension enabled then try doing the following and let me know what happens:

  1. Open main.lua
  2. Remove the if calls that you have added.
  3. Save file(Ctrl + s)
  4. Make sure that you have the code in main.lua selected(carriage blinking, or some code highlighted)
  5. Press LEFT ALT + L.
    This should run the main.lua using Love2D if everything is configured correctly.
    Please keep in mind that the original code is not compatible with the latest releases of Love2D and you will have to update some of the code if you haven't done that yet.
    Still, the error type/message should be different.

@Arxshot
Copy link

Arxshot commented Jul 10, 2020

I was replying to the original question by SabryPhys explaining how I successfully use Visual Studio Code (on both Windows 10 an MacOS) to launch and debug my assignments from inside Visual Studio Code.

The if conditions I added in step 8 are only necessary if you wish to use the debugger, set breakpoints and see callstacks. Yes, Love2d is not a lua debugger but after the Love2D process launches specified by the command location in the configuration profile, it runs your main.lua and those if conditions allow Visual Studio Code to connect the debugger to the Lua process if you launched with the debugger. They are ignored if you launch with the regular run button. The lua-local configuration profile is what enables this facility and it made learning and troubleshooting my Love2d program more enjoyable.

@VKiNGpl
Copy link

VKiNGpl commented Jul 10, 2020

Thank you for clarifying.
In that case this does look lie a helpful tool and I might look into using it myself!

@Bmcelroy19827
Copy link

I installed a few plugins and run/debug Love with VSCode on Windows 10, if it helps this is how my setup looks:

  1. Install Visual Studio Code
  2. Install LOVE
  3. Open VSCode, select Extensions on left menu toolbar (5th item down)
  4. Install Extension "Love2D Support" (pixelbyte studios)
  5. Install Extension "Local Lua Debugger" (Tom Blind)
  6. Install Extension "Lua" (keyring.lua)
  7. Select Explorer on left toolbar, open editor to your LOVE sources
  8. Add these two lines to the top of your main.lua to enable the debugger when you launch with debug.
    if pcall(require, "lldebugger") then require("lldebugger").start() end
    if pcall(require, "mobdebug") then require("mobdebug").start() end
  9. Select Run on left menu toolbar (4th item down)
  10. Select the "settings cog" next to Debug LOVE which should open a launch.json file. Set the program command to the appropriate path to LOVE. ie. Windows something like "C:\Program Files\LOVE\love.exe" or Macos, "/Applications/love.app/Contents/MacOS/love". an example launch.json shown below.
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lua-local",
            "request": "launch",
            "name": "Debug LOVE",
            "program":
            {
                "command": "C:\\Program Files\\LOVE\\love.exe"
            },
            "args": 
            [
                "${workspaceFolder}",
                "vsc_debug"
            ],
        },
    ]
}

Thanks for the information. I just changed ${workspaceFolder} to ${relativeFileDirname} since my workspace includes all of the files for the course. I just open the main.lua file in vs code and then click execute and it will run in that directory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants