#181✎ 564random_godIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthZelda Is Awesome!I love The Legend Of Zelda!Express YourselfVideo GamesI like to play video games!Hobbies
Don't forget Grand Dad and the Hotel Mario intro. SmileBASIC already has plenty of dank memes!
The sand can be eaten.
Posted
#182✎ 593IAmRalseiForum LeaderHiddenAchievementsFirst YearMy account is over 1 year oldWebsiteExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming Strength
Would a TikTok port had been a good submission for this contest?
If you made that, I’m sure all the sane people (and me) would have left SBS.
Posted
Would a TikTok port had been a good submission for this contest?
If you made that, I’m sure all the sane people (and me) would have left SBS.
Good thing the contest ended before I got the idea then
Posted
#184✎ 564random_godIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthZelda Is Awesome!I love The Legend Of Zelda!Express YourselfVideo GamesI like to play video games!Hobbies
GPC! I was hoping for top 3, but I'm like 1 vote off.
Posted
#185✎ 1065randomousOwnerRobotHiddenEaster EggsSecond YearMy account is over 2 years oldWebsiteDrawingI like to draw!HobbiesOK, voting is over! Thank you all for your participation! I'll get the badges out... ummmm soonish? It might have to wait until this weekend.
Anyway, winners! Nathaniel's Pumpkin Swing comes in first with 11 votes, with Prokuku's The Maze in second with 9 votes. A VERY close third goes to 12me21's Spooky Tetris (but you don't get a prize for being in third, sorry).
I'll get to the winners today about their prizes, but the badges might have to wait a while. I hope everyone enjoyed the contest!
Posted
#186✎ 160DFrostExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming StrengthI really don't like OSP's that's why I participated in this one.
Posted
#187✎ 564random_godIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthZelda Is Awesome!I love The Legend Of Zelda!Express YourselfVideo GamesI like to play video games!HobbiesCan there be any more unificial contests you make?
Posted
#188✎ 453kenchicFirst YearMy account is over 1 year oldWebsiteBeginner ProgrammerI'm just starting out! I'm still trying to grasp the basics.Programming Strengthosu! Is Awesome!I love osu!Express Yourself
Can there be any more unofficial contests you make?
if they're user-led, they'll fail
if they're site-led, they'll get a few submissions
I am a medical professional and I declare SB to be dead.
Posted
#189✎ 232HTV04Intermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthAvatar TabooI didn't change my avatar for 180 daysWebsiteForum ContributorHiddenAchievements
I am a medical professional and I declare SB to be dead.
Pretty much, we’re all waiting for SB4 anyway.
Posted
Edited
by HTV04
#190✎ 160DFrostExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming Strengthwell crap. SB 3 is my LIFE
Posted
#191✎ 160DFrostExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming Strengthseriously, I've spent ~3500 hours on SB
Posted
#192✎ 202TheV360Pokemon Is Awesome!I love Pokemon!Express YourselfFirst DayJoined on the very first day of SmileBASIC SourceWebsiteNight PersonI like the quiet night and sleep late.Express YourselfI really hope they build on the language with SB 4.
I hope there will be stuff like:
Polygon display capable of shading and texturing polygons (think a new namespace, like the SP, BG, and BGM namespaces, so POLYADD x1, y1, z1, x2, y2, z2, x3, y3, z3, color)
Easier-to-use arrays, and maybe something like dictionaries or JavaScript objects, or Lua arrays.
More dedicated data structures that still have those weird hacks (like a bool type that still shows up as 0 or 1, and still can be added to integers or real numbers)
3D sprite rotation, so SPROT id, roll, [pitch], [yaw] (pitch goes first because backwards compatibility, or at least only on COMPAT mode if it exists)
Which leads to... DEPTH MODES. The default is draw order only, but you can change it to mean that the Z-value has an actual effect on the thing it renders. Default one means old programs will look the same.
Editable editor. I'd love it if other programmers could write the editor so it shows variables in the autocomplete, and add help for user-defined functions.
Whoops this just turned into a wishlist.
Posted
#193✎ 160DFrostExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming StrengthJavaScript objects are being implemented into petit com 3.
http://smilebasicsource.com/page?pid=1228
Posted
#194✎ 202TheV360Pokemon Is Awesome!I love Pokemon!Express YourselfFirst DayJoined on the very first day of SmileBASIC SourceWebsiteNight PersonI like the quiet night and sleep late.Express Yourself
I really like the speed and simplicity that vanilla SmileBASIC provides. This does look like a useful-as-heck library, but I mean something like this:ACLS
EVENTS = [
{
X = 4,
Y = 10,
TEXT = "REALLY GREAT RPG 2 DELAYED TO 2023. 'Gotta focus on my grades' V360 said in a press release"
},
{
X = 4,
Y = 8,
TEXT = "Did you play the new Undertale demo? I'm so flipping hyped for it, but I'm also [redacted]"
},
{
X = 9,
Y = 10,
TEXT = "What's happening fellow gamers",
OPTION = {
TEXT = "Hello, world!"
}
}
]
?EVENT[0].X, EVENT[0].Y, EVENT[0].TEXT
That reminds me. I should've added Array Literals to the list.
Posted
#195✎ 160DFrostExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming StrengthI already made that. It will be in the next update.
Posted
#196✎ 160DFrostExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming Strengththere is no nesting of objects, unfortunately
Posted
#197✎ 202TheV360Pokemon Is Awesome!I love Pokemon!Express YourselfFirst DayJoined on the very first day of SmileBASIC SourceWebsiteNight PersonI like the quiet night and sleep late.Express Yourself
there is no nesting of objects, unfortunately
An easy workaround would be to store the nested object as a literal string. I'd take the performance drop if you could nest the objects.
Another idea is to automatically convert this:
{
A: "Hello!",
B: {
Text: "Gaming",
X: 30
}
}To this:
{
A: "Hello!",
B.Text: "Gaming",
B.X: 30
}...If that's how it works. Maybe separate nested object things by using a dot character, and not allow dot characters in names of elements.
Posted
Edited
by TheV360
#198✎ 160DFrostExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming StrengthYou could also store reference names to other objects and reference them. Also, the object literal stuff has to fit on a single line and passed into a function.
DIM OBJECT[0],OBJECT2[0]
OBJECT = OBJECT()
OBJECT2 = OBJECT()
ADD OBJECT2, "ME",100
ADD OBJECT, "REFERENCE","OBJECT2"
VAR OBJECT2_ME = FEILD(VAR(FEILD(OBJECT,"REFERENCE")),"ME")
PRINT OBJECT2_ME
'prints 100
Posted
#199✎ 12XenoslyceVideo GamesI like to play video games!HobbiesNight PersonI like the quiet night and sleep late.Express YourselfIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming Strengthrip
Posted
#200✎ 12XenoslyceVideo GamesI like to play video games!HobbiesNight PersonI like the quiet night and sleep late.Express YourselfIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming Strength
Day 3, toad drops out with lack of motivation and asks if we want a key to his project even though he just said it lacked motivation and anything