This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-01-06 12:16:57

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

I made a programming language in Panther!!

SimpleStart programming is a programming language developed for those who want to kick-start their career in programming. It has a similarity to the major programming languages, but was simplified, so after learning SimpleStart, learning the others won't be hard!

You can download it SimpleStart Here

Last edited by Servine (2012-01-08 06:27:30)


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#2 2012-01-06 12:27:14

Daffy22
Scratcher
Registered: 2008-12-15
Posts: 500+

Re: I made a programming language in Panther!!

sound good! Have you based your syntax off an existing programming language or have you completely made it up?  smile


http://img201.imageshack.us/img201/1784/logosmalle.png
"Spectacular - 5 Star" -  CNET.com Editor.

Offline

 

#3 2012-01-06 12:41:43

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

Daffy22 wrote:

sound good! Have you based your syntax off an existing programming language or have you completely made it up?  smile

made it up. currently on booleans


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#4 2012-01-06 12:48:31

slinger
Scratcher
Registered: 2011-06-21
Posts: 1000+

Re: I made a programming language in Panther!!

Neat!  big_smile


http://s0.bcbits.com/img/buttons/bandcamp_130x27_blue.png

Offline

 

#5 2012-01-06 13:08:18

nickbrickmaster
Scratcher
Registered: 2010-02-02
Posts: 500+

Re: I made a programming language in Panther!!

Nice! show the ST. They might add it to Scratch 2.0.


Ask me what I'm doing, wait an hour than roll a die, if it's 4-6, I'm playing Skyrim, if it's 1, I'm eating, if it's 2-3 I'm programming.
Steam: nickbrickmaster | RotMG: PwnThemAll | Minecraft: nickbrickmaster | League Of Legends: BaneOfTitans

Offline

 

#6 2012-01-06 14:14:44

ZeroLuck
Scratcher
Registered: 2010-02-23
Posts: 500+

Re: I made a programming language in Panther!!

nickbrickmaster wrote:

Nice! show the ST. They might add it to Scratch 2.0.

Why?
This isn't really useful...


http://3.bp.blogspot.com/-oL2Atzp0Byw/T465vIQ36dI/AAAAAAAAADo/1vqL4PvhkM0/s1600/scratchdachwiki.png

Offline

 

#7 2012-01-06 14:33:08

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: I made a programming language in Panther!!

Servine wrote:

Syntax...

@SIMPLESTART SYNTAX
_ = string/variable

dialog;_,_                 = shows a dialog
ask;_                    = asks a question
ask.dialog;_            = asks a question in a dialog
camera.add;                = adds camera to costumes
camera.replace;_        = replace a costume with camera
background;_            = switches to specified background
set.var;_,_                = Set's a var.
change.var;_,_            = Changes a var.
make.var;_                = Makes a var.
delete.var;_            = Deletes a var.
stop.all;                = Stop's all.

It's not finished, and I wont give it to anyone until I have enough. It can

read variables... e.g....

Code:

ask.dialog;how are you?
dialog;You wrote...,+answer+

It's so easy.

I thought I'd just post this, because, it's programming scratch, but with text!

Pretty cool! I have one suggestion. Since you're using objects and properties (camera is an object, replace is a function) It might make more sense to swap them around like so:

dialog;_,_                 = shows a dialog
ask;_                    = asks a question
dialog.ask;_            = asks a question in a dialog
camera.add;                = adds camera to costumes
camera.replace;_        = replace a costume with camera
background;_            = switches to specified background
var.set;_,_                = Set's a var.
var.change;_,_            = Changes a var.
var.make;_                = Makes a var.
var.delete;_            = Deletes a var.
all.stop;                = Stop's all.
So you put the method, property or function after the object, especially as you've already done this for camera and having them on different sides to each other depending on the object will just confuse people  smile

this will also make things easier when your language starts dealing with various sprites:

sprite1.costume;1
sprite2.costume.height

etc

Last edited by sparks (2012-01-06 14:35:56)


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#8 2012-01-06 14:45:26

nickbrickmaster
Scratcher
Registered: 2010-02-02
Posts: 500+

Re: I made a programming language in Panther!!

ZeroLuck wrote:

nickbrickmaster wrote:

Nice! show the ST. They might add it to Scratch 2.0.

Why?
This isn't really useful...

They were thinking of adding a text-based scratch. lots of people wanted it.


Ask me what I'm doing, wait an hour than roll a die, if it's 4-6, I'm playing Skyrim, if it's 1, I'm eating, if it's 2-3 I'm programming.
Steam: nickbrickmaster | RotMG: PwnThemAll | Minecraft: nickbrickmaster | League Of Legends: BaneOfTitans

Offline

 

#9 2012-01-06 15:00:49

ZeroLuck
Scratcher
Registered: 2010-02-23
Posts: 500+

Re: I made a programming language in Panther!!

nickbrickmaster wrote:

ZeroLuck wrote:

nickbrickmaster wrote:

Nice! show the ST. They might add it to Scratch 2.0.

Why?
This isn't really useful...

They were thinking of adding a text-based scratch. lots of people wanted it.

yes, but this isn't really text-based Scratch...


http://3.bp.blogspot.com/-oL2Atzp0Byw/T465vIQ36dI/AAAAAAAAADo/1vqL4PvhkM0/s1600/scratchdachwiki.png

Offline

 

#10 2012-01-06 15:24:29

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: I made a programming language in Panther!!

For objects you could use stuff like

sprite.make:(spritename),(spriteimageurl)/(spriteimagefiledirectory),


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#11 2012-01-06 15:26:11

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: I made a programming language in Panther!!

WindowsExplorer wrote:

For objects you could use stuff like

sprite.make:(spritename),(spriteimageurl)/(spriteimagefiledirectory),

Then like

sprite.move:(spritename),(direction90-90),(amount),


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#12 2012-01-06 16:04:04

nickbrickmaster
Scratcher
Registered: 2010-02-02
Posts: 500+

Re: I made a programming language in Panther!!

ZeroLuck wrote:

nickbrickmaster wrote:

ZeroLuck wrote:


Why?
This isn't really useful...

They were thinking of adding a text-based scratch. lots of people wanted it.

yes, but this isn't really text-based Scratch...

Why not?


Ask me what I'm doing, wait an hour than roll a die, if it's 4-6, I'm playing Skyrim, if it's 1, I'm eating, if it's 2-3 I'm programming.
Steam: nickbrickmaster | RotMG: PwnThemAll | Minecraft: nickbrickmaster | League Of Legends: BaneOfTitans

Offline

 

#13 2012-01-06 16:04:42

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: I made a programming language in Panther!!

You might be interested in this: http://scratch.mit.edu/galleries/view/40881

Offline

 

#14 2012-01-07 07:25:07

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

Great progress!! added...

# Reading of reporters
# Merging of variables
# Easy functions, easy to implent

adding... LOOPING and BOOLEANS.


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#15 2012-01-07 07:43:54

ihaveamac
Scratcher
Registered: 2007-09-22
Posts: 1000+

Re: I made a programming language in Panther!!

I should make one, either based off of this that I made a while ago or the panther blocks too, but it would be slightly different than yours.


~ihaveamac - visit ihaveamac.net

Offline

 

#16 2012-01-07 09:04:32

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

YYEESS!

Booleans and looping created!

Booleans are a bit limited though, as...

You can only call ONE boolean at a time.

here's what it's like...

dialog.ask;How are you?;
boolean.create;+answer+,I'm fine;
dialog;Oh, I'm fine too!;<>
all.stop;;<>
dialog;I don't know what you just said!

The syntax for all.stop is 100% correct.

That translate to...

Ask the user if they are ok.
If the answer was "I'm fine", set the main boolean to "true", if not, set it to "false".
Show a dialog saying the PC is fine IF the main boolean is true.
Stop the following of the script if the main boolean is true.
Show a dialog saying the PC doesn't understand you if the boolean is false.

Cool, huh?


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#17 2012-01-07 10:37:50

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: I made a programming language in Panther!!

i made one in bingo a little while ago


http://i.imgur.com/1QqnHxQ.png

Offline

 

#18 2012-01-07 11:25:47

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

TRocket wrote:

i made one in bingo a little while ago

coolio


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#19 2012-01-08 06:27:51

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

Simple Start is HERE!


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#20 2012-01-08 10:42:21

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

well? ANYONE?!


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#21 2012-01-08 10:53:05

waveOSBeta
Scratcher
Registered: 2009-12-08
Posts: 1000+

Re: I made a programming language in Panther!!

Use this with the image userscript...  hmm


http://internetometer.com/image/10202.png]
New signature coming soon!  smile

Offline

 

#22 2012-01-08 10:56:18

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

waveOSBeta wrote:

Use this with the image userscript...  hmm

wut?


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#23 2012-01-09 15:47:59

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

Please Can Someone Reply?!

Its So Annoying After You Spent A Whole Day Working On Something, And Then Nobody Cant Even Bother To Post. And Don't Get All Literal Now Trolls.


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

#24 2012-01-09 15:56:37

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: I made a programming language in Panther!!

OK, I'll reply  smile

The thing looked pretty cool, I saw the syntax before you edited it out the post! An interesting thing for panthererers, maybe you can upload it to mod share once i'm done with it too!

Offline

 

#25 2012-01-09 15:57:24

Servine
Scratcher
Registered: 2011-03-19
Posts: 1000+

Re: I made a programming language in Panther!!

LS97 wrote:

OK, I'll reply  smile

The thing looked pretty cool, I saw the syntax before you edited it out the post! An interesting thing for panthererers, maybe you can upload it to mod share once i'm done with it too!

Okay. I just saw the topic AMMAAZZINNGG!


http://bluetetrarpg.x10.mx/usercard/?name=Servine

Offline

 

Board footer