DSiWare Forum

Topic: Petit Computer

Showing 1,641 to 1,660 of 2,794

AuthorMessage
Avatar

Bluerobin2

1,641. Posted: Tue 19th Feb 2013 21:05 GMT

@ramstrong I click import image and choose my image. Then nothing happens....

Houston, We have a Syntax Error.

Blog: bluerobin2.blogspot.com
Backloggery: backloggery.com/bluerobin2

I LIKE PIXEL ART
5÷0=BOOOOOM

3DS Friend Code: 3007-9228-5126

AuthorMessage
Avatar

damolii

1,642. Posted: Wed 20th Feb 2013 04:11 GMT

Does anyone know where i could put a gosub in this. i need it for my rpg @loop
If btrig()==1 goto @ up
If btrig()==2 goto @ down
If btrig()==4 goto @ left
If btrig()== 8 goto @ right
Goto @loop
Keep in mind the routines. Thank you. I am also thinking of posting my beyblade demo. All I need left is the movement for the opponent beyblade. I hate trigonometry
@ bluerobin2 thx for the praise

Edited on Wed 20th February, 2013 @ 04:27 by damolii

my Dsi of 4 1/2 years is going through it's midlife crisis. Great...

AuthorMessage
Avatar

petiSnail

1,643. Posted: Wed 20th Feb 2013 04:39 GMT

damolii wrote:

Does anyone know where i could put a gosub in this. i need it for my rpg @loop
If btrig()==1 then gosub @up
If btrig()==2 then gosub @down
If btrig()==4 then gosub @left
If btrig()==8 then gosub @right
Goto @loop
@up
heroY=heroY-1
return
@down
heroY=heroY+1
return
@left
heroX=heroX-1
return
@right
heroX=heroX+1
return

I added pretty much what to do in the quote.

petiSnail

AuthorMessage
Avatar

Discostew

1,644. Posted: Wed 20th Feb 2013 05:51 GMT

bluerobin2 wrote:

@ramstrong I click import image and choose my image. Then nothing happens....

And do you have QuickTime installed? Haven't heard from you on whether you did. That is mandatory to have that operation work.

"What fun is there in making sense?"

3DS Friend Code: 4425-1477-0127 | Nintendo Network ID: Discostew

AuthorMessage
Avatar

ChangeV

1,645. Posted: Wed 20th Feb 2013 06:04 GMT

bluerobin2 wrote:

@Morphtroid It still no works...
Can u plz do it for me?
Here: (click to enlarge)
Untitled
Untitled
Yup, these are backgrounds for my Battlewood game. To the others, please do not use.
I will delete this as soon as one of you help me.
Please help!
thanks :)

Here are recreations of pictures using petit computer's graphic commands.
the finished results aren't 100% same as your pictures, but they are very close.
they use default color palette for graphic.

use the code directly (modify if needed)
or save the finished result as GRP file and load in your game.

here is my version of field.
Untitled
Untitled

ACLS
CLEAR

'draw sky (whole screen)
GFILL 0,0,255,192,146

'draw mountain
GCOLOR 161
GLINE 0,60,64,9
GLINE 64,9,144,60
GLINE 144,60,247,11
GLINE 247,11,255,17
GPAINT 65,20

'draw green field
GFILL 0,61,255,191,229

'using these values, draw tree
X= -3:Y=17:GOSUB @PUT_TREE
X= 30:Y=23:GOSUB @PUT_TREE
X= 64:Y=18:GOSUB @PUT_TREE
X=199:Y=24:GOSUB @PUT_TREE
X=231:Y=28:GOSUB @PUT_TREE

'you can save the finished result
'SAVE "GRP0:BG1R"

@1
GOTO @1
END

@PUT_TREE
GFILL X+6,Y+37,X+22,Y+63,127

'first, draw outline with a color that's not used in picture.
'then paint inside with the color you want.
'finally, repeat first step with the color you want.
'by doing this way, you will be able to overlap filled shape with same color.
'in this case, filled green circle can overlap with each other.
GCIRCLE X+15,Y+7,9,1
GPAINT X+15,Y+7,198,1
GCIRCLE X+15,Y+7,9,198

GCIRCLE X+3,Y+12,6,1
GPAINT X+3,Y+12,198,1
GCIRCLE X+3,Y+12,6,198

GCIRCLE X+24,Y+15,11,1
GPAINT X+24,Y+15,198,1
GCIRCLE X+24,Y+15,11,198

GCIRCLE X+12,Y+21,10,1
GPAINT X+12,Y+21,198,1
GCIRCLE X+12,Y+21,10,198

GCIRCLE X+22,Y+30,9,1
GPAINT X+22,Y+30,198,1
GCIRCLE X+22,Y+30,9,198

GCIRCLE X+10,Y+33,9,1
GPAINT X+10,Y+33,198,1
GCIRCLE X+10,Y+33,9,198

'tree root part
GLINE X+21,Y+43,X+ 1,Y+65,1
GLINE X+ 1,Y+65,X+10,Y+62,1
GLINE X+10,Y+62,X+10,Y+65,1
GLINE X+10,Y+65,X+16,Y+61,1
GLINE X+16,Y+61,X+18,Y+65,1
GLINE X+18,Y+65,X+20,Y+65,1
GLINE X+20,Y+65,X+21,Y+61,1
GLINE X+21,Y+61,X+26,Y+65,1
GLINE X+26,Y+65,X+28,Y+65,1
GLINE X+28,Y+65,X+24,Y+59,1
GLINE X+24,Y+59,X+21,Y+43,1
GPAINT X+17,Y+57,127,1
GLINE X+21,Y+43,X+ 1,Y+65,127
GLINE X+ 1,Y+65,X+10,Y+62,127
GLINE X+10,Y+62,X+10,Y+65,127
GLINE X+10,Y+65,X+16,Y+61,127
GLINE X+16,Y+61,X+18,Y+65,127
GLINE X+18,Y+65,X+20,Y+65,127
GLINE X+20,Y+65,X+21,Y+61,127
GLINE X+21,Y+61,X+26,Y+65,127
GLINE X+26,Y+65,X+28,Y+65,127
GLINE X+28,Y+65,X+24,Y+59,127
GLINE X+24,Y+59,X+21,Y+43,127
RETURN


here is my version of dungeon.
Untitled
Untitled

ACLS
CLEAR

'whole dungeon
GFILL 0,0,255,192,204
'floor
GFILL 0,64,255,192,161

'using these values, draw light
X= 29:Y=27:GOSUB @PUT_LIGHT
X=221:Y=27:GOSUB @PUT_LIGHT

'using these values, draw ground crack
X= 25:Y=116:GOSUB @PUT_CRACK
X=185:Y=164:GOSUB @PUT_CRACK

'you can save the finished result
'SAVE "GRP0:BG2R"

@1
GOTO @1
END

@PUT_LIGHT
'stick
GFILL X-2,Y+0,X+2,Y+19,133
'outer light
GCIRCLE X,Y,13,162
GPAINT X,Y,162,162
GFILL X-2,Y+0,X+2,Y+13,127
'inner light
GCIRCLE X,Y,5,37
GPAINT X,Y,37,37
RETURN

@PUT_CRACK
GCOLOR 253
GLINE X+0,Y+0,X+11,Y+8
GLINE X+6,Y+8,X+37,Y+8
GLINE X+24,Y+8,X+38,Y+17
GLINE X+23,Y+17,X+61,Y+17
RETURN

ChangeV

AuthorMessage
Avatar

Bluerobin2

1,646. Posted: Wed 20th Feb 2013 17:06 GMT

@ChangeV THANK YOU! Do you want to be in the credits? :)

Houston, We have a Syntax Error.

Blog: bluerobin2.blogspot.com
Backloggery: backloggery.com/bluerobin2

I LIKE PIXEL ART
5÷0=BOOOOOM

3DS Friend Code: 3007-9228-5126

AuthorMessage
Avatar

bigdog00

1,647. Posted: Wed 20th Feb 2013 18:13 GMT

I am considering adding a dock (Like a mac) to cincos. Please tell me if you think it's a good idea. Does anyone even use cincos? There are only 3 people (not including myself) that use it. @hamjam00 , and my 2 step bros. There is a link to the QR codes a couple of pages back, so please check it out. Keep in mind that it is the Developer's version (Very buggy) back there, and many of the bugs will be fixed in the future update.

Edited on Wed 20th February, 2013 @ 18:15 by bigdog00

I like petit computer! Asphault 3d is awesome!

3DS Friend Code: 0473-8697-6288 | Twitter: bigdogdt

AuthorMessage
Avatar

Hamjam00

1,648. Posted: Wed 20th Feb 2013 21:37 GMT

SURVEY: if you have made an OS, please quote this and put your OS's! I love creating os on petitcom and want to see who's made one and test them!!!! also, OaSis OS terminal has been completed!!!!!
*UPDATE i made my new logo! do you guy like it or not? (it wasn't made in MS Paint, only the text! I drew it by hand!)

Edited on Wed 20th February, 2013 @ 22:22 by Hamjam00

Hamjam00

Twitter: zombeesoft

AuthorMessage
Avatar

hairmanban19

1,649. Posted: Wed 20th Feb 2013 23:10 GMT

Hamjam00 wrote:

SURVEY: if you have made an OS, please quote this and put your OS's! I love creating os on petitcom and want to see who's made one and test them!!!! also, OaSis OS terminal has been completed!!!!!
*UPDATE i made my new logo! do you guy like it or not? (it wasn't made in MS Paint, only the text! I drew it by hand!)

I like your logo.

Monster Hunter 3 Ultimate! Zelda! Minecraft! Petit Computer! Adventure Time!

3DS Friend Code: 3136-7615-5907

AuthorMessage
Avatar

ChangeV

1,650. Posted: Thu 21st Feb 2013 00:32 GMT

bluerobin2 wrote:

@ChangeV THANK YOU! Do you want to be in the credits? :)

No. You don't need to add me in the credit.

ChangeV

AuthorMessage
Avatar

Kinsale

1,651. Posted: Thu 21st Feb 2013 00:56 GMT

Hello everyone, I am interested in creating a game with petit computer, but I don't know much about BASIC. Does anyone have or know of a good tutorial?

Reporting from the weather balloon, over the smokesacks, over the city, the Weatherman...
Currently playing: Pokemon Black 2, Legend of Zelda Skyward Sword, Gameboy Camera(it qualifys as a game!), and Toki Tori

AuthorMessage
Avatar

Hamjam00

1,652. Posted: Thu 21st Feb 2013 02:11 GMT

hairmanban19 wrote:

Hamjam00 wrote:

SURVEY: if you have made an OS, please quote this and put your OS's! I love creating os on petitcom and want to see who's made one and test them!!!! also, OaSis OS terminal has been completed!!!!!
*UPDATE i made my new logo! do you guy like it or not? (it wasn't made in MS Paint, only the text! I drew it by hand!)

I like your logo.

Thanks!

Hamjam00

Twitter: zombeesoft

AuthorMessage
Avatar

damolii

1,653. Posted: Thu 21st Feb 2013 02:17 GMT

@petiSnail I think I have tried that but I will try again

my Dsi of 4 1/2 years is going through it's midlife crisis. Great...

AuthorMessage
Avatar

Bluerobin2

1,654. Posted: Thu 21st Feb 2013 03:28 GMT

Kinsale wrote:

Hello everyone, I am interested in creating a game with petit computer, but I don't know much about BASIC. Does anyone have or know of a good tutorial?

www.youtube.com/petitprofessor
period :)

Houston, We have a Syntax Error.

Blog: bluerobin2.blogspot.com
Backloggery: backloggery.com/bluerobin2

I LIKE PIXEL ART
5÷0=BOOOOOM

3DS Friend Code: 3007-9228-5126

AuthorMessage
Avatar

damolii

1,655. Posted: Thu 21st Feb 2013 04:17 GMT

@petiSnail how would you go about using that along with another routine. If you say gosub, I have already tried

my Dsi of 4 1/2 years is going through it's midlife crisis. Great...

AuthorMessage
Avatar

Kinsale

1,656. Posted: Fri 22nd Feb 2013 15:21 GMT

bluerobin2 wrote:

Kinsale wrote:

Hello everyone, I am interested in creating a game with petit computer, but I don't know much about BASIC. Does anyone have or know of a good tutorial?

www.youtube.com/petitprofessor
period :)

Thank you very much.

Reporting from the weather balloon, over the smokesacks, over the city, the Weatherman...
Currently playing: Pokemon Black 2, Legend of Zelda Skyward Sword, Gameboy Camera(it qualifys as a game!), and Toki Tori

AuthorMessage
Avatar

Hamjam00

1,657. Posted: Fri 22nd Feb 2013 21:40 GMT

i will release Oasis OS at about 8pm tonight. It will only include the terminal.
UPDATE it is posted with the sprite pack on my twitter @zombeesoft below! hope you enjoy! full os to be finished by March 1st!!!!
you press up on the d-pad to click an app, and use the bottom screen for the mouse, password is RUN in all caps.

Edited on Sat 23rd February, 2013 @ 03:02 by Hamjam00

Hamjam00

Twitter: zombeesoft

AuthorMessage
Avatar

damolii

1,658. Posted: Sat 23rd Feb 2013 03:09 GMT

Is it possible that Gamebridge could release its songs in sheet music. I would be so happy. Especially in B flat like clarinet. That is what I play. I have already figured out Track 19.

my Dsi of 4 1/2 years is going through it's midlife crisis. Great...

AuthorMessage
Avatar

Morphtorok

1,659. Posted: Sat 23rd Feb 2013 03:53 GMT

I think you could do the sheet music yourself by ear if you have enough music training. That's what most fans do with game music, I think.

Oh look! A Morphloggery. Oh, and a Morphsite too.

3DS Friend Code: 0173-1330-0080

AuthorMessage
Avatar

damolii

1,660. Posted: Sat 23rd Feb 2013 04:30 GMT

@Morphtroid okay. Back to no hope of ever bragging about the sheet music. At least theres always eterna city sheet music........

Edited on Sat 23rd February, 2013 @ 04:31 by damolii

my Dsi of 4 1/2 years is going through it's midlife crisis. Great...