Advertisement
amigojapan

request for help with s-found

Aug 15th, 2016
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. I would like you to help me with s-found which is
  2. a block programming system for new programmers
  3.  
  4. s-found is a block programming language which allows you to program in blocks and
  5. make simple 2d games by arranging hte blocks, it is simillar to scratch but has some advantages
  6. basically sfound is a joining of google blockly and the phaser JS game engine
  7.  
  8. to use s-found go to:
  9. https://amigojapan.github.io/s-found/
  10. copy a project URL to the clipboard
  11. click start sfoud
  12. click load project from URL
  13. click ok until you ar eback on the page, then click eval, use arrow keys to control the action
  14.  
  15. things that need to be done as for now:
  16. catch up to the ability of https://scratch.mit.edu/.
  17. why s-found is better than scratch. #1 scrach is flash s-found is html5 #2 s-found
  18. generates Javscript
  19.  
  20. 1.- implement first class function blocks, where a block can assign a function to a variable
  21. which generates code like this
  22. myvar = function(x,y){
  23. //body
  24. return something;//[optional]
  25. }
  26.  
  27. 2.- implement timers
  28. when you implement a timer block it should take a first class function variable as a callback
  29. it should generate code like this:
  30. setTimeout(myvar, mymillisecods);
  31.  
  32. 3.- implement "costumes" where one sprite object has many imaged and you can easily change from one
  33. image to another like in scratch
  34.  
  35. 4.- implement sounds
  36. make blocks to play sounds, allow uploading sounds
  37.  
  38. 5.- in general make the GUI more neat...
  39.  
  40. 6.- documentation
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement