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

#1 2011-06-20 04:07:08

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

Gopher Development Thread

This is the official Gopher 2.0 development thread.

http://rookwood101.tk/topicrate.php?id=66349&ret=image&style=3

Here is our progress in Gopher 2.0:

# = Undone
# = Almost Done
# = Done

Lots more blocks, blocks, blocks! [A lot of credit to jslomba]

[ 80% Complete]

Versions:

Gopher 2.0

Gopher 1.3

Gopher 1.1

Gopher 1.0

Download Gopher Here
Download Patches Here
Go to Gopher Website

Developers Status:

WindowsExplorer (Head Programmer): http://blocks.scratchr.org/API.php?action=onlineStatus&type=text&target=all&user=WindowsExplorer

jslomba (Programmer): http://blocks.scratchr.org/API.php?action=onlineStatus&type=text&target=all&user=jslomba

GP1 (Website Programmer): http://blocks.scratchr.org/API.php?action=onlineStatus&type=text&target=all&user=GP1

bbbeb (Programmer): http://blocks.scratchr.org/API.php?action=onlineStatus&type=text&target=all&user=bbbeb

nathanprocks (Blockspec Designer): http://blocks.scratchr.org/API.php?action=onlineStatus&type=text&target=all&user=nathanprocks

flashgocrazy (Moderator): http://blocks.scratchr.org/API.php?action=onlineStatus&type=text&target=all&user=flashgocrazy

Jordach (Graphics): http://blocks.scratchr.org/API.php?action=onlineStatus&type=text&target=all&user=Jordach

Credits:
[View credits here]

The next version will be Gopher 2.0, and will be out in a few months, but util then, scratch on!

Gopher 1.5 Beta might be out soon, so keep checking back!

Last edited by WindowsExplorer (2011-12-03 09:14:17)


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

Offline

 

#2 2011-06-20 07:54:46

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Gopher Development Thread

only 10 new blocks? I can get you 50  big_smile


the the the the the

Offline

 

#3 2011-06-20 10:48:32

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

Re: Gopher Development Thread

Well, I'm only learning squeak, and I have A LOT of other things on my To-Do list! You can help me though. Could you give me the code to add a mesh menu to my mod, and help me create a working compiler?


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

Offline

 

#4 2011-06-20 12:28:48

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Gopher Development Thread

sure!


the the the the the

Offline

 

#5 2011-06-20 14:04:27

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

Re: Gopher Development Thread

jslomba wrote:

sure!

Ok! Post the code as a reply in the lastest gopher development thread when you get the chance!


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

Offline

 

#6 2011-06-24 18:20:12

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Gopher Development Thread

WinExplorer, I got the wiki page online. what do you want me to put on?


the the the the the

Offline

 

#7 2011-06-24 18:32:54

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: Gopher Development Thread

To add a mesh menu to gopher, file all of these in.

To file something in, turn off fill-screen mode, open a workspace, paste one of these codes in, highlight all the code, then click the little button above the scroll bar, click more, and then click file in. 

Code:

'From Gbear605 [No updates present.] on June 6, 2011 for Adding mesh to Scratch'!


!ScratchFrameMorph methodsFor: 'intialization'!
createMenuPanel
    | t1 t2 |
    menuPanel _ AlignmentMorph new color: Color transparent;
             centering: #center;
             inset: 0;
             height: 0.
    self addShortcutButtonsTo: menuPanel.
    t1 _ #((#File #fileMenu:) (#Edit #editMenu:) (#Share #shareMenu:) (#Help #helpMenu:) (#Mesh #meshMenu:) ).
    AllowSharing ifFalse: [t1 _ t1 select: [:t3 | t3 second ~= #shareMenu:]].
    t1 do: 
        [:t3 | 
        t2 _ ScratchMenuTitleMorph new contents: (t3 at: 1) localized;
                 target: self selector: (t3 at: 2).
        menuPanel addMorphBack: t2.
        #meshMenu: = (t3 at: 2) ifFalse: [menuPanel addMorphBack: (Morph new color: Color transparent;
                 extent: 12 @ 5)]].
    topPane addMorph: menuPanel! !


!ScratchFrameMorph methodsFor: 'menu/button actions'!
meshMenu: t1 
    | t2 |
    t2 _ CustomMenu new.
    self addServerCommandsTo: t2.
    t2 localize.
    #(1 ) do: [:t3 | t2 labels at: t3 put: ((t2 labels at: t3)
                copyFrom: 1 to: (t2 labels at: t3) size - 1)
                , ScratchTranslator ellipsesSuffix].
    t2 invokeOn: self at: t1 bottomLeft + (0 @ 10)! !

!ScratchFrameMorph methodsFor: 'menu/button actions'!
addServerCommandsTo: t1 
    | t2 t3 |
    t2 _ false.
    t2 ifTrue: [^ self].
    t1 addLine.
    (workPane scratchServer notNil and: [workPane scratchServer sessionInProgress])
        ifTrue: 
            [t1 add: 'Show IP Address' action: #showNetworkAddress.
            t3 _ workPane scratchServer isHosting
                        ifTrue: ['Stop Hosting Mesh']
                        ifFalse: ['Leave Mesh'].
            t1 add: t3 action: #exitScratchSession]
        ifFalse: 
            [t1 add: 'Host Mesh' action: #startHostingScratchSession.
            t1 add: 'Join Mesh' action: #joinScratchSession]! !

Then save the image, and restart scratch.  There should now be a mesh menu.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#8 2011-06-30 03:11:15

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

Re: Gopher Development Thread

jslomba wrote:

only 10 new blocks? I can get you 50  big_smile

Can you give me the codes for 50 new blocks when you have the chance?


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

Offline

 

#9 2011-07-17 16:07:59

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

Re: Gopher Development Thread

Gopher 1.1 is now released!


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

Offline

 

#10 2011-07-17 18:15:05

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Gopher Development Thread

WindowsExplorer wrote:

Gopher 1.1 is now released!

awesome! can I pick it up and work on it?

also, I noticed that there is no icon on the desktop for gopher, and I think the installer is kinda unnessecary.

Last edited by jslomba (2011-07-17 18:19:11)


the the the the the

Offline

 

#11 2011-07-18 02:15:36

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

Re: Gopher Development Thread

actually, it isn't. And yes, you can work on it!


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

Offline

 

#12 2011-07-18 10:21:56

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Gopher Development Thread

and the only thing in the program files folder is the uninstaller.


the the the the the

Offline

 

#13 2011-07-18 10:50:17

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Gopher Development Thread

hey windowsExplorer, how do you turn fill screen off in gopher 1.1?


the the the the the

Offline

 

#14 2011-07-18 13:32:49

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

Re: Gopher Development Thread

Shift-click the file menu, then 'Dev Mode [+]' but it is password protected. I will be telling the developers the password in version 1.3.


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

Offline

 

#15 2011-07-18 15:07:35

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

Re: Gopher Development Thread

Gopher 1.3 won't be released for 2 - 3 weeks though!


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

Offline

 

#16 2011-07-19 04:23:19

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

Re: Gopher Development Thread

WindowsExplorer wrote:

Gopher 1.3 won't be released for 2 - 3 weeks though!

But I'm working on it right now!


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

Offline

 

#17 2011-07-21 04:12:59

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

Re: Gopher Development Thread

If anyone can help me create a website just like scratch where you can share your projects, I will officially call them a developer, and give them the developer password.


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

Offline

 

#18 2011-07-21 04:14:58

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Gopher Development Thread

WindowsExplorer wrote:

If anyone can help me create a website just like scratch where you can share your projects, I will officially call them a developer, and give them the developer password.

Heh.  I can get the Dev password easily  cool


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#19 2011-07-21 04:17:28

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

Re: Gopher Development Thread

how?


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

Offline

 

#20 2011-07-21 04:40:42

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Gopher Development Thread

WindowsExplorer wrote:

how?

My method is crude  cool


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#21 2011-07-21 04:49:06

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

Re: Gopher Development Thread

What? Tell me.


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

Offline

 

#22 2011-07-23 04:22:26

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

Re: Gopher Development Thread

I updated this topic. Now it tells the developer's status!


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

Offline

 

#23 2011-07-28 03:34:10

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

Re: Gopher Development Thread

Please click the new love it button!


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

Offline

 

#24 2011-07-28 08:58:47

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Gopher Development Thread

you want to see if poemon or flashgocrazy can help with gopher?


the the the the the

Offline

 

#25 2011-07-28 09:10:13

RUMCHEERYPOOPOO
Scratcher
Registered: 2008-12-23
Posts: 100+

Re: Gopher Development Thread

I suggest you ask a moderator kindly if they can rename the topic: Gopher Development Thread.


I AM ROOKWOOD101 NOW! (just so you know)

Offline

 

Board footer