Benimo12 2025-01-13 06:29
What if you can set and reset the time in a Pause menu rather than just on initialization of the program? I feel like that would be a better implementation. Still love your take on this idea
was8bit 2025-01-13 06:29
WAIT VBL ( or wait 1 ) is 1/60 of a second, precisely...
So WAIT 60 is exactly 1 second ;)
Benimo12 2025-01-13 06:32
@was8bit, if I’m not mistaken, isn’t that measurement gotten from the amount of frames that have passed I.e, 60 frames which means it can also be written as TIMER/60 since TIMER is also 1 frame?
was8bit 2025-01-13 06:33
Yes, clock can auto start at 0 hundred hours 0:00 and one can have an option to change the time... probably a good idea as mine accepts text as a "0" without any fix ;)
Also, you dont need the big text... just undo the REM for the EZ text version... jusr edit ";" for the flasher, OR just use ":" and remove the flash ;)
Benimo12 2025-01-13 06:34
Oh ok. Very Cool. I wanna use your graphical implementation in my final clock if that’s ok with you. :)
was8bit 2025-01-13 06:36
Yes... its all the same math... just how you want to code it... especially since most games are easier to code using WAIT VBL... for my example, i used a quick fix ;)
was8bit 2025-01-13 06:38
Yes, my big text is "free" to use, as it is an exact copy of Timo's text, just made bigger...
Also, you can remove the outer filler around the text if you want to... ;)
was8bit 2025-01-13 06:42
You wouldn't need to use the whole set... just the #'s portion... but if you move them around you will need to adjust the math... also it uses CELL SIZE 1,1 so you can either blank out cells 0,1,16,17 or keep my version ...
Dont hesitate to post if you edit the code and run into issues :)
was8bit 2025-01-13 06:45 (Edited)
If you dont want CELL SIZE 1,1 you will have to use all 4 cells of eachn# manually.. i have a quick solution for that option...
SUB POP(X,Y,C)
CELL X,Y,C
CELL X+1,Y,C+1
CELL X,Y+1,C+16
CELL X+1,Y+1,C+17
END SUB
Benimo12 2025-01-13 07:41
Thank you very much!
was8bit 2025-01-13 14:33
:)
Sylveon 2025-01-13 21:05
Cool :3