Archiverse Internet Archive
投稿のみ 投稿と返信
前のページ(最近)
1 2 3 4 5 6 7 8 9 10 11 12 13 14
次のページ(過去)
返信[2]
親投稿
raimondz raimondzz
The first time you used X was on that def. This means that X became a variable in the scope of that function. Once the function return X cease to exist. If you use it again, then X will have the default value (0). You should declare the variable with var or dim before using them to know in wich scope they are(Global or local)
2そうだね
プレイ済み
返信[1]
親投稿
raimondz raimondzz
The image is too dark but here is the key: [DRVX7VHV]
1そうだね
プレイ済み
プレイ日記
raimondz raimondzz
Making undo/redo will take me longer than I thought. Also, I need to write what the upper buttons do("F/R","J2L",">_I"). Can anyone guess what they do?
1そうだね
プレイ済み
返信[3]
親投稿
raimondz raimondzz
I know two ways: Option 1: S$[LEN(S$)-1]="" Option 2: EAT POP(S$) 'Function that consume a result from a function and do nothing. Something can be anything(String,Number or Array) DEF EAT something END
0そうだね
プレイ済み
返信[1]
親投稿
raimondz raimondzz
PRGGET$ read the entire line. This include the character 10(New line). Just remove the last character of the string to solve that problem.
1そうだね
プレイ済み
返信[6]
親投稿
raimondz raimondzz
Something about prgedit and prgget$: PRGEDIT specifie a program and line to edit. The problem is that it start from line 0 and iterate until it reach the desired line. PRGGET$ read the current line and it move the pointer to the next line. If the file you're reading is too big, then you should remove prgedit from the "for" because the performance won't be good.
3そうだね
プレイ済み
返信[3]
親投稿
raimondz raimondzz
Also, I decided to leave the find/replace on the bottom screen. The screen is still a work in progress.
1そうだね
プレイ済み
返信[2]
親投稿
raimondz raimondzz
Here is the changelog
1そうだね
プレイ済み
プレイ日記
raimondz raimondzz
Hi, I've made the find/replace tool for my IDE. However, i feel that the text fields and other options(case sensitive, whole text filter, etc) should be on the bottom screen instead of the top.
5そうだね
プレイ済み
返信[2]
親投稿
raimondz raimondzz
I've made this function a long time ago. This will erase all the character in a box that start on the point (X,Y) of size WxH. DEF CLSBOX X,Y,W,H VAR I COLOR 0,0 FOR I=Y TO Y+H-1 IF I>30 THEN BREAK IF DISPLAY()==1 && X>=40 THEN BREAK IF DISPLAY()==0 && X>=50 THEN BREAK LOCATE X,I ? " "*W; NEXT COLOR #TWHITE,0 END
1そうだね
プレイ済み
返信[2]
親投稿
raimondz raimondzz
I'm still working on this feature. I was trying to reuse a tile from the font but I ended making a new one. I'm using the background layer instead of the console for the highlight because it's faster to refresh in O3DS. By the way, the matrix overlay is just an easter egg. I won't post more spoilers about useless things XD.
1そうだね
プレイ済み
返信[2]
親投稿
raimondz raimondzz
I ported Megalovania, Anticipation(Genocide) and Flowey theme to MML. You need to give credits to Toby Fox thought.
0そうだね
プレイ済み
プレイ日記
raimondz raimondzz
I've found a good game on Miiverse(Petit Computer). Cyburst:[P3A834ZM] Link of the person who created this game: https://miiverse.nintendo.net/users/T-T.nokastan5
13そうだね
プレイ済み
返信[3]
親投稿
raimondz raimondzz
I'm 100% sure that making moon lord is posible... Recently, I found a game called Cyburst(A shoot'em up) and it have a boss similar to the destroyer, other that shoot lasers beams and lot of projectiles. You should try it out. In my opinion, it's one of the best games of Smilebasic and is a must-play (Seriously, the music, gameplay and visual effects suppass Solid Gunner by far) [P3A834ZM]
0そうだね
プレイ済み
プレイ日記
raimondz raimondzz
Now I can highlight text on my IDE using a background that has a copy of the font. However, I think that it look weird.
2そうだね
プレイ済み
プレイ日記
raimondz raimondzz
Added an easter egg to the editor. By the way, anyone know how to check if a program is running on smiletool?
5そうだね
プレイ済み
返信[1]
親投稿
raimondz raimondzz
"X=X1" assign the content of X1 to X. "X==X1" check if X is equal to X1. You need to change "X=X1 AND Y=Y1" to "X==X1 AND Y==Y1"
1そうだね
プレイ済み
返信[5]
親投稿
raimondz raimondzz
Here is a key: [S7YS3L4] Keep in mind that the IDE is still in Alpha. The controls are similar to smilbasic editor. You can view more details on the [ ? ] Button on the keyboard.
0そうだね
プレイ済み
返信[1]
親投稿
raimondz raimondzz
This is the bottom screen that appear by pressing X.
2そうだね
プレイ済み
プレイ日記
raimondz raimondzz
Well, I managed to do autocomplete using Ternary tree. I haven't load all the functions (Just the first 14 pages on the help button) but it doesn't take too long to load the hints. Now, I will add the feature to create files based on templates and improve the rendering time (Right now, I render all the text after any change. Maybe I should render the line edited by the user)
10そうだね
プレイ済み