Navigation

    Fuze Arena Logo
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Help
    • Discord

    Problem with sprites & arrays

    Beginners
    11
    42
    2921
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • pianofire
      pianofire Fuze Team @SteveZX81 last edited by

      @SteveZX81 That is a shame but I understand it can be frustrating. Maybe come back to it later.

      1 Reply Last reply Reply Quote 0
      • Jonboy
        Jonboy Fuze Team last edited by

        Steve, no matter what, it's very important to spend some time on structures as they are very powerful and once grasped really easy. Secondly, and this is just my opinion, coding using states is really, really important. States are not part of the language, they are just a concept.

        I've almost finished my arcade remake of Rescue from Stern. It has taught me so much about using states that i wish i'd done it ten years ago!

        Every single variation of an items existence is simply a state. In the case of Rescue i have a little bloke falling from the sky:

        soldier.parachuting = 0
        soldier.falling = 1
        soldier.swimming = 2
        soldier.sinking = 3

        if soldier.state == soldier.parachuting then
        run this bit of code
        endif

        If soldier.state = soldier.falling
        run this bit of code
        endif

        If soldier.state = soldier.swimming
        run this bit of code
        endif

        soldier.state = soldier.sinking
        run this bit of code
        endif

        If I have ten different items existing the process is the same for all of them. This way it is easy to have everything happening at once all with their own little controls.

        Generally each state, once it has been set moves on to the next state. So when my soldier has successfully parachuted into the water he changes to .swimming but if he got hit on the way then he goes into .falling and when he hits the water, well he’s dead by now so he’s .sinking – poor little thing!

        I was really worried when I saw your ‘white flag’ post. Just a couple of days ago I sent a comment to the team listing games I’d love to see and Atari’s Canyon Bomber (1977) was in the list so I was really chuffed to see you had taken it on. Canyon Bomber was one of the first true video games I played in the grand old holiday town of Minehead in Somerset.

        If I can be of any assistance with the project then let me know. My email is jon.silvera@fuze.co.uk and I’d be very happy to help if I can.

        I think it should be in Black and White though!

        1 Reply Last reply Reply Quote 1
        • Martin
          Martin Fuze Team last edited by Martin

          @SteveZX81 - ignore this, I don't want to confuse you!
          @Jonboy - quick tip, and sorry if you already know this.

          if instead of

          soldier.parachuting = 0
          soldier.falling = 1
          soldier.swimming = 2
          soldier.sinking = 3
          

          You have

          soldier.parachuting = 1
          soldier.falling = 2
          soldier.swimming = 4
          soldier.sinking = 8
          

          Then it becomes possible to do bitwise logic on your state. It may not seem like much and is actually totally irrelevant to your use case because your soldier can't be doing two things at once, but let's say that your soldier could be both swimming and sinking at the same time (maybe he can't swim very well!) Then soldier.state would be 12. In the code you would say:

          soldier.state = soldier.swimming | soldier.sinking
          

          And when you know that it is possible for your soldier to do two things at once, ask if he is swimming by saying:

          if soldier.state & soldier.swimming then
          

          We don't care what else they may be doing, but we know they are at least swimming!

          Like I say, bordering on shouldn't be in the beginning help section, and no good for your use case, but I just wanted to mention it since it ties in with the state stuff you mentioned.

          sys64738 Dave 2 Replies Last reply Reply Quote 2
          • sys64738
            sys64738 F @Martin last edited by sys64738

            @Martin this is exactly how wavetables work in the c64 sid chip so you can use 2 waveforms in single note. well not using logic, but bits in fuze 0000 0000 is square 0000 0100 is noise so 0000 0101 would be square and noise together (feel free to make fuze capable of this)

            Thanks for the posts about states, I had been doing a ghetto version of this to tell what my octopus in the deep is up to, I might convert him to a struct since as a learning process.

            Games looking good steve, just come back to it when you are ready, Maybe start another project for now. I have same problem with my the deep project, trying to learn too many new concepts is overwhelming, I do my best coding in the shower (when I'm away from it all) haha

            1 Reply Last reply Reply Quote 2
            • SteveZX81
              SteveZX81 F last edited by

              I swear this software is turning me into a raving madman. I woke up at 4:32am this morning with an idea that I thought would solve my problem, so climbed out of bed in the middle of the night and tried it. of course it failed as per usual but still.. I must be insane. lol

              pianofire 1 Reply Last reply Reply Quote 2
              • pianofire
                pianofire Fuze Team @SteveZX81 last edited by

                @SteveZX81 Ah yes 4AM programming. I know it well

                1 Reply Last reply Reply Quote 0
                • M
                  MikeDX last edited by

                  Yep! sounds perfectly normal to me. wake up with idea and must try it. programming isn't typing, it's thinking. well actually the typing is the programming but the developer part is the thinking

                  1 Reply Last reply Reply Quote 1
                  • SteveZX81
                    SteveZX81 F last edited by SteveZX81

                    Guys, I'm really sorry for keeping spamming this thread but I feel I'm so close..

                    I've been working on my 4am idea and that is to use an array to set the # of coins in a column (row to you guys) and then draw the coins using the array to draw however many coins in each column then deduct 1 from the index of the array when a coin in that column(row to you) is hit.

                    This is what I have now.
                    newcode.jpg

                    The first bit sets up the array and sets each index to 3 (3 coins in a stack, just to test it)

                    The second bit of code draws the coin sprites on screen using the array to see how many to add

                    The third bit tests for a collision with the bomb and apart from adding to the score etc, it takes one away from the array (which hopefully means that column(row to you) will draw with one less coin next time)

                    but I'm getting errors like 'array out of bounds'.

                    I honestly feel that I'm close to this working.. well, I think so.
                    am I on the right track or utterly clueless?

                    N 1 Reply Last reply Reply Quote 0
                    • N
                      Nisse5 F @SteveZX81 last edited by

                      @SteveZX81 It's line 140 that gets the error isn't it? You're looping up to 26, while the highest array index you can use for that array is 9.

                      SteveZX81 1 Reply Last reply Reply Quote 0
                      • SteveZX81
                        SteveZX81 F @Nisse5 last edited by

                        @Nisse5 said in Problem with sprites & arrays:

                        @SteveZX81 It's line 140 that gets the error isn't it? You're looping up to 26, while the highest array index you can use for that array is 9.

                        Right yeah! ohh damn.. that kind of trashes the whole 'approach'. as changing that to 9 means it won't detect a collision with the others. ughhhh and I really thought I was close to fixing it. hells bells

                        N 1 Reply Last reply Reply Quote 0
                        • N
                          Nisse5 F @SteveZX81 last edited by Nisse5

                          @SteveZX81 said in Problem with sprites & arrays:

                          @Nisse5 said in Problem with sprites & arrays:

                          @SteveZX81 It's line 140 that gets the error isn't it? You're looping up to 26, while the highest array index you can use for that array is 9.

                          Right yeah! ohh damn.. that kind of trashes the whole 'approach'. as changing that to 9 means it won't detect a collision with the others. ughhhh and I really thought I was close to fixing it. hells bells

                          I'm not actually sure the approach is wrong... I just think you use the wrong index for what you want to do. (Hint: look for example how you draw the coins and how you use array indexes there.)

                          1 Reply Last reply Reply Quote 0
                          • SteveZX81
                            SteveZX81 F last edited by

                            Thanks.

                            I've tried redoing the collision bit to this but alas no joy. I've tried so many variants now that I'm about to put my fist through my monitor lol.

                            Here is my latest lame failed attempt
                            morecode.jpg

                            N 1 Reply Last reply Reply Quote 0
                            • N
                              Nisse5 F @SteveZX81 last edited by Nisse5

                              @SteveZX81 Go a bit further and use "c=0" and "c+=1" as you do in the draw loop. Then reference c in the same way as you do in the draw loop. Currently, you loop in the same way, but you reference the array indexes in a different way.

                              1 Reply Last reply Reply Quote 0
                              • SteveZX81
                                SteveZX81 F last edited by

                                Thanks, I did do that but no joy. I think I've wasted enough of your time on this so we'll call it a day but I really do appreciate the help you gave me!

                                1 Reply Last reply Reply Quote 0
                                • SteveZX81
                                  SteveZX81 F last edited by

                                  I'm utterly thrilled and delighted to announce that my problem is now solved and the game is working as should be.
                                  This is not my doing (I thought I was close, but not really)

                                  Martin has gone above and beyond to help me with this and all I can do is say a HUGE Thank you!

                                  1 Reply Last reply Reply Quote 6
                                  • Dave
                                    Dave Fuze Team last edited by

                                    @Martin I think a pint is in order for you sir.

                                    1 Reply Last reply Reply Quote 1
                                    • Dave
                                      Dave Fuze Team @Martin last edited by

                                      @Martin Mate... That's awesome! Think I heard an angelic chorus when I read this! The joy and embarrassment that occurs when you learn something new in programming...

                                      1 Reply Last reply Reply Quote 2
                                      • First post
                                        Last post