Fuze eshop
-
Fuze eshop will always be an in progress program it will never be (Finished).
Code: FUZE-ESHOPComment about the Fuze eshop here
All game codes are taken from the great list of game codes
And no where else.https://fuzearena.com/forum/topic/719/the-great-list-of-game-codes/19
-
Nice design, looks good :)
Also learned from your source code that you can use newlines in strings with Fuze without escaping them :)
-
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)
-
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)
-
@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
-
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
-
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 -
I did not but I’ll think about that
-
I just figured out that you can’t paste a code into the project id download
So the bookmark method wont work. -
This post is deleted! -
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
-
I can add more control support but I don’t have enough time on my hands to make it more like the real eshop
-
—- New Update—-
New creators tab
One new game -
@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.
-
I know it would be better to have more comments and explanations but I really don’t want to do that lol 😄
-
Could you make a Framework for doing menus and things like this and then maybe you could share it
-
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
-
@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 :)
-
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. -
This post is deleted!