160 likes | 317 Views
CS110: Intro to Computer Science. Starting to Program From Scratch. Core Issue Programming Concepts. scratch is a new programming language that lets you create your own interactive stories, animations, games, music, and art. Supporting Issues Programming Logic. Prepared by Fred Annexstein
E N D
CS110: Intro to Computer Science Starting to Program From Scratch Core Issue Programming Concepts scratch is a new programming language that lets you create your own interactive stories, animations, games, music, and art. Supporting Issues Programming Logic Prepared by Fred Annexstein University of Cincinnati Some rights reserved 007
Beginning Programming • Download Scratch! from scratch.mit.edu
Varieties of Computer Languages Interpreted <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html> <head> <title>Hello, World!</title> </head> <body> Hello, World! </body> </html> Compiled int main(int argc, char * argv[]) { printf("Hello world!"); exit(0); } 10000011 00000001 00010001 00000000 00111101 11111100 01110100 00111101 00000000 01000000 00000000 00000000 00000000 00000000 00000000 00000000 10010000 00000000 00000000 00000000 01010000 00000000 00000111 00110000 00001011 00000001 00001011 00000011 00001010 00000000 00000000 00
The Scratch Interpreted Environment 8 Categories of Programming Objects
Scratch Programming Elements Looks: Control: Sound:
Boolean Expressions and Boolean connectives Sensing: Numbers:
Game Programming: “Knock the Kitty in Hole” Basic Design: Start the game with 0 score and pick random location at top to drop the Kitty Use a touching mouse? sensing event to grab kitty and knock into hole. Use a touching hole? sensing event to add to score and drop another kitty.
Project to turn in: Modify the Game above to include another sprite into the action. Turn in your project by saving the scratch program and uploading to Bb.