Navigation

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

    Fuze eshop

    Work In Progress
    10
    27
    2554
    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.
    • PB____
      PB____ last edited by

      Nice design, looks good :)

      Also learned from your source code that you can use newlines in strings with Fuze without escaping them :)

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

        This could be really cool. It would be great too if instead of designing icons yourself, you could have the creators of the game submit icons (via a project share)

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

          And I have an idea, (although you may already do this) have you considered for the new releases instead of manually putting them in, just add a timecode to when you add each game, and then every time you run the game it would go through and check your current time versus the upload time / date and make a list of the 10 newest? Idk if that's too much or not possible, but just an idea.

          (Sorry about the double post)

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

            @Retrocade_media I might add something like that later but I want to keep it as simple as possible so I can make updates fast and often

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

              In the next update I will be adding
              A creators tab that shows everyone’s username that has a game code on the eshop along with how many games that have on the eshop and a little info like if there on the fuze team or if they won any contests.

              This tab will be put in between new releases and info

              1 Reply Last reply Reply Quote 3
              • CasualTie5
                CasualTie5 F last edited by

                very cool idea indeed!
                Did you consider bookmarking every level ID in the source code so we can easily copy-/paste them? That would make downloading levels slightly easier

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

                  I did not but I’ll think about that

                  1 Reply Last reply Reply Quote 3
                  • LinkCraft
                    LinkCraft F last edited by LinkCraft

                    I just figured out that you can’t paste a code into the project id download
                    So the bookmark method wont work.

                    1 Reply Last reply Reply Quote 4
                    • LinkCraft
                      LinkCraft F last edited by LinkCraft

                      This post is deleted!
                      1 Reply Last reply Reply Quote 5
                      • ITzTravelInTime
                        ITzTravelInTime F last edited by ITzTravelInTime

                        Please add support for d-pad/directional button, and keyboard support is also appreciated for docked-mode users.

                        And also having something more like the real eshop whould be nice, for example using thumbnails in the main menus of programs and then having all the details in a specific page about that piece of software

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

                          I can add more control support but I don’t have enough time on my hands to make it more like the real eshop

                          ITzTravelInTime 1 Reply Last reply Reply Quote 3
                          • LinkCraft
                            LinkCraft F last edited by

                            —- New Update—-
                            New creators tab
                            One new game

                            1 Reply Last reply Reply Quote 2
                            • ITzTravelInTime
                              ITzTravelInTime F @LinkCraft last edited by

                              @LinkCraft02 Yes, things like this would be easyer with object oriented programming, doing them procedurally requires some extra time and work, at least the dpad support helpsm so please add it.

                              But what i reccomend you, to start investing some fuze coding time on adding some more comments and explainations to the code, so that the project could be more easily maintained by others, if needed.

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

                                I know it would be better to have more comments and explanations but I really don’t want to do that lol 😄

                                1 Reply Last reply Reply Quote 3
                                • P
                                  petermeisenstein F last edited by

                                  Could you make a Framework for doing menus and things like this and then maybe you could share it

                                  1 Reply Last reply Reply Quote 0
                                  • Zypher
                                    Zypher last edited by

                                    You know what, if this is kept up by a team of a few people, and updated and evolved, it would be possible to pop out updates weekly that add features and update the game list. It could act as amazing way to browse current fuze apps

                                    1 Reply Last reply Reply Quote 2
                                    • PB____
                                      PB____ last edited by PB____

                                      @LinkCraft02 Have you seen the latest tutorial video's about structs? I think an array of structs could help you maintain the games in the project more easily. For example:

                                      games = [
                                          [
                                              .creator = "PB____",
                                              .title= "2048",
                                              .description= "...",
                                      //etc
                                          ],
                                          [
                                               .creator="SteveZX81",
                                               .title="Subs",
                                               .description= "..."
                                      ///etc
                                         ],
                                      //etc
                                      ]
                                      creators = [
                                          [
                                              .username = "PB____",
                                              .fuzeteam = false,
                                              .donator = false,
                                              .info = ""
                                          ], [
                                              .username = "SteveZX81",
                                              .fuzeteam = false,
                                              .donator = false,
                                              .info = "First community share live winner"
                                          ]
                                      //etc.
                                      ]
                                      

                                      I'm not saying you have to do this, but if you plan on keeping the list up to date, you might think about changing the code so it's easier to keep up to date, and then this is a technique that might be useful for you :)

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

                                        that's not really a struct in fuze terms, that's an object.

                                        a struct is like a typedef in c:

                                        struct mytemplate
                                           int x
                                           int y
                                        endstruct
                                        

                                        then initialise an array of them with

                                        mytemplate items[10]
                                        

                                        However, they way you have done it there is my preferred way as there are problems using struct/endstruct especially when initialising values via functions.

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

                                          This post is deleted!
                                          1 Reply Last reply Reply Quote 0
                                          • PB____
                                            PB____ last edited by

                                            @MikeDX In the structures tutorial that I mentioned they would be called an "array of structures". I do agree that object would be a better term if you consider other programming languages.

                                            I now realize that maybe in the tutorial video's they made a distinction between the term .struct and structure where struct would be the type and structure would be the instance. But in any case, yes, I'd gladly call them objects.

                                            Oh oh, just thought of another nice to have: structs with methods :P

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