Can't load temp file because Access is denied

,

Hello! I'm new here and hoping my first issue isn't a huge one to help with.

I have experience with MS Small Basic, Visual Basic, and C#.Net; I'm fresh to Lua and now diving in since I bought a PlayDate mainly to develop for it. It's so nifty!!

I followed SquidGod's YouTube tutorial on getting set up and writing a simple rock-avoidance game using the A button and crank. I have since expanded on this with a few other small features and the one I'm having issues with is saving the highscore.

I'm using VSCode on MacOS 15.3.1.

My code is as follows:

import "CoreLibs/graphics"
import "CoreLibs/sprites"

local pd = playdate
local gfx = pd.graphics

local playerX = 40
local playerY = 120
local playerSpeed = 3
local playerImage = gfx.image.new("images/capybara")
local playerSprite = gfx.sprite.new(playerImage)
playerSprite:setCollideRect(4, 4, 56, 40)
playerSprite:moveTo(playerX, playerY)
playerSprite:add()

local obstacleSpeed = 5
local obstacleImage = gfx.image.new("images/rock")
local obstacleSprite = gfx.sprite.new(obstacleImage)
obstacleSprite.collisionResponse = gfx.sprite.kCollisionTypeOverlap
obstacleSprite:setCollideRect(0,0,48,48)
obstacleSprite:moveTo(450, 240)
obstacleSprite:add()

local gameState = "stopped"
local score = 0
local hs = pd.datastore.read("high_score")
local highscore = 0
if hs ~= nil then
    highscore = hs["highscore"]
end

function pd.update()
    gfx.sprite.update()

    if gameState == "stopped" then
        gfx.drawTextAligned("Press A to Start", 200, 40, kTextAlignment.center)
        if pd.buttonJustPressed(pd.kButtonA) then
            gameState = "active"
            playerSprite:moveTo(playerX, playerY)
            obstacleSprite:moveTo(450, math.random(40, 200))
        end
    elseif gameState == "active" then
        local crankPosition = pd.getCrankPosition()

        --if crankPosition <= 90 or crankPosition >= 270 then
        --    playerSprite:moveBy(0, -playerSpeed)
        --else
        --    playerSprite:moveBy(0, playerSpeed)
        --end

        local playerChange = pd.getCrankChange()
        playerSprite:moveBy(0, playerChange)

        if pd.getButtonState() == pd.kButtonLeft then
            playerSprite:moveBy(-2, 0)
            if playerSprite.x < 0 then
                playerSprite:moveTo(0, playerSprite.y)
            end
        elseif pd.getButtonState() == pd.kButtonRight then
            playerSprite:moveBy(2, 0)
            if playerSprite.x > 100 then
                playerSprite:moveTo(100, playerSprite.y)
            end
        end

        local actualX, actualY, collisions, length = obstacleSprite:moveWithCollisions(obstacleSprite.x - obstacleSpeed, obstacleSprite.y)
        if obstacleSprite.x < -20 then
            obstacleSprite:moveTo(450, math.random(40, 200))
            score += 1
            obstacleSpeed += 0.5
        end

        if length > 0 or playerSprite.y > 270 or playerSprite.y < -30 then
            gameState = "stopped"
            if score > highscore then
                highscore = score
            end
            score = 0
            obstacleSpeed = 5
        end
    end

    gfx.drawTextAligned("Score: " .. score, 390, 5, kTextAlignment.right)
    gfx.drawTextAligned("HI: " .. highscore, 390, 25, kTextAlignment.right)
    --gfx.drawTextAligned("(" .. playerSprite.x .. "," .. playerSprite.y .. ")", 10, 10, kTextAlignment.left)
end

function pd.gameWillTerminate()
    if hs ~= nil then
        hs["highscore"] = highscore
        pd.datastore.write(hs, "high_score", true)
    end
end

function pd.gameWillPause()
    if hs ~= nil then
        hs["highscore"] = highscore
        pd.datastore.write(hs, "high_score", true)
    end
end

gameWillTerminate() does not appear to be getting called when going home from the system menu so I copied my saving code into gameWillPause() which does get called.
I did a Run Build Task to compile and launch the game. Within the simulator, I sent the files to my connected console.

So, now, when I press the menu button on the physical console, the game crashes with the error:

main.lua:98: Couldn't open file at high_score.tmp:
   Access denied
stack traceback:
 [C]: in field 'write'
 main.lua:98: in function <main.lua:95>

I played around with changing the highscore value inside of high_score.json, recompiling, and resending to the console and it is successfully reading the file. It just won't write and I cannot figure out what's getting in my way.

Does anyone have any thoughts? All help and suggestions are massively appreciated :slight_smile:

According to the documentation for playdate.file, the root of the app bundle is read-only. This is, in fact, where I created my high_score.json file (as I figured it'd be easiest to make it within VSC and compile it with everything else). :man_facepalming: I guess I'll create it programmatically on launch if it doesn't already exist and all should be well from there. Would this be best practice?

Did you by chance forget to add your bundle id in the pdxinfo?

Yessssss I did! Let me figure out what to make it and then I'll see if that remedies my issue :slight_smile:

1 Like

Spellthorn you genius lmao!!
For some dumb reason, I thought that it would be written in automatically during compilation. I had a peek at some of my earlier (zipped to sideload) builds before these changes and noticed some other data was added to pdxinfo (like compile time or something?) so I guess I figured bundleid would be written in too :man_shrugging:

Thank you very, very much for solving my hours-long headache! :blush:

1 Like

To anyone interested, you can play it by sideloading the attached pdx.zip!
You can play with the code yourself by downloading the Source zip!

Saving officially works now AND my other feature changes are included:

  • Use D-pad LEFT and RIGHT to move the character back and forth a bit (increments by 2 pixels; can be held down to glide smoothly). This gives you some extra time to move when the rocks start flying fast.
  • The crank is used for up/down movement like in the SquidGod template BUT the functionality is changed so the movement speed is related to how fast you move the crank. This also means you can put the crank in a comfy neutral spot before pressing A to start.
  • The top and bottom bounds of the character are reduced to keep you on the screen
  • The rocks' vertical position can be anywhere on the screen (this with the above point keep you from cheating the game by moving below or above where the rocks can reach)

I won't upload this to the catalog or to Itch.io because it's still largely SquidGod's work but I really wanted to provide it because I think these are neat features that other beginners might be able to learn from (I'm also kinda proud of these lil adjustments :innocent:)

TDJsFirstGameSource.zip (4.6 KB)
TDJsFirstGame.pdx.zip (23.1 KB)

I'm so glad that was the fix. Funny thing is I only knew that was the issue because I literally had the same problem an hour before when I made my game everything worked in testing but then when I put it on the playdate and it threw the same error. Luckily it only took me 20 mins (thanks to ChatGPT) to figure it out but then I saw you had the issue and I was like. I KNOW THE FIX :joy:

I could have sworn I filled out the pdxinfo but alas it was empty lol

1 Like

I downloaded and played your game. Rock goes so fast haha. I would suggest you change the graphics for your game for practice but also so it doesn't just say My Game on my Playdate lol

1 Like

Though it's unfortunate you ran into the same issue, it's a pretty awesome coincidence :joy:
And I bet it felt amazing to exercise what you just learned (re: "I KNOW THE FIX")!

Sick! Thank you for downloading and for the suggestions ^.^

Dude, I HAD to make the rock go faster. Otherwise it'd be better off a snail xD

I should play around with making my own sprites at some point but I don't think this game is it lol
However, I did make an icon and card image to display in the game list AND I RENAMED IT!
I also added the functionality to reset the highscore to zero from the playdate menu!

The anticipated update is here:
TDJsFirstGame - Capy vs Rock Source.zip (v 1.0.1)(31.2 KB)
TDJsFirstGame - Capy vs. Rock.pdx.zip (v 1.0.1)(27.5 KB)
There seems to be an issue on the first run when sending to device from the simulator; however, it works fine after pressing A to reboot and then relaunching the game and then each launch thereafter. If uploaded to the online Sideload section and downloaded through Settings > Games on device then it runs just fine :slight_smile:

1 Like

I'll have to download the new one. But yes all about practice and learning more. Now you can call it complete and start a new project :blush:

1 Like