UNIT 5 Games and social media to promote intergenerational learning. Module 3 Tools to invent games. Advanced Training Course

Size: px
Start display at page:

Download "UNIT 5 Games and social media to promote intergenerational learning. Module 3 Tools to invent games. Advanced Training Course"

Transcription

1 Module 3 Tools to invent games Advanced Training Course Adults Learning for Intergenerational Creative Experiences This training course is delivered in the context of LLP Project GRUNDTVIG-ALICE Grant Agreement number : / Project Number: LLP IT-GRUNDTVIG-GMP University Ca Foscari of Venice - Technical University of Crete - Romanian Society for Lifelong Learning SEED The Mosaic Art and Sound - Fondazione Nazionale Carlo Collodi UNIT 5 Games and social media to promote intergenerational learning

2 Unit 5 Games and social media to promote intergenerational learning Module 3: Tools to invent games Nektarios Moumoutzis Marios Christoulakis Laboratory of Distributed Multimedia Information Systems and Applications Training Coordination University Ca Foscari of Venice Cover graphic design Name of Responsible (SEED) This publication is produced with the financial support from the European Community in the frames of LLP, sectoral program Grundtvig, Grant Agreemen Grant Agreement number : / The publication reflects the views only of its authors, and the European Commission cannot be held responsible for any use which may be made of the information contained herein. The authors of the Module are not responsible for the content of the websites listed as resources in this handbook. The content of these pages may change over time and is the sole responsibility of their authors 2

3 The Unit : Working Plan The Unit : Games and social media to promote intergenerational learning Gradual introduction to the creative language of video games through investigation of different types of games and exploration of their value as a means to develop key competencies and promote intergenerational dialogue. Introduction to game design and development with practical activities using Scratch. A holistic approach to games and social media for learning through guidelines for the establishment and support of game communities through the use of social networks. Modules M 1 Introduction: Understanding and classifying games Aim: Introduce the core concepts of games, discuss on their learning value and present the most important game genres with respect to their learning potential. Educational value of games from the perspective of intergenerational learning. Practical activities on transforming ordinary games into a learning environment promoting intergenerational dialogue. M 2- Analysing and selecting games: Identifying games for adults and children to play and learn together Aim: Present methodologies and tools to analyse and evaluate games to support game selection and deeper understanding of games. Practical activities promoting self-reflection on own behaviour as game player(s). M 3 Introduction: Tools to invent games (this document introduces this lesson) Aim: Introduce detailed game design methodologies and use of modern game development tools to create games. Practical activities to introduce educators, adults and children to game design and development. M 4 Establishing and supporting game communities Aim: Present a holistic approach to connect game players and game developers within the context of game communities supported by social media. Practical activities to establish and support game communities connecting families and primary school communities that use games to learn and technically skilled teenagers/volunteers that develop and refine games for them. 3

4 Summary 1- Introducing the topic The topic in brief Preparing your work This is very important Now you are prepared to see practices Hands on! Tutorial What? Why? When? Where? How? Who? External Aids Introducing an example of practice Final Remarks References

5 games Module 3 Tools to invent Nektarios Moumoutzis nektar@ced.tuc.gr Marios Christoulakis christoulakis@ced.tuc.gr Laboratory of Distributed Multimedia Information Systems and Applications Abstract How one could exploit modern game development platforms to organize intergenerational learning interventions that go beyond playing games to understanding their internals towards the so called gaming literacy? The aim of this module is to provide guidance towards this need. A general methodology for detailed game design is presented and the Scratch platform is introduced as an environment for non-experts to develop their own games. An alternative detailed design specially tailored for Scratch is used as part of examples of practical activities that an ALICE trainer could follow to introduce adults and children to the secrets of game development. 5

6 1.1. The topic in brief 1- Introducing the topic In the second module of this learning unit we have seen how storyboards could be used to provide a detailed analysis of the visual, audio, interaction and branching characteristics of a game along with game rules and player objectives. We have noted that storyboards, are also used as a tool to describe a new game before the actual production starts. There are many platforms that could be used to develop a game ranging from professional game engines to more simple platforms appropriate for non-technical people, amateurs or even children. In this module we will address issues related to game development. We will see a general methodology for detailed game design that uses appropriate abstractions to make the detailed design general enough to be able to use it in virtually any game development environment. In the practical activities of the module we will introduce Scratch ( as a game development platform appropriate for non-professionals. We will also see how the general purpose methodology for game design could be adapted to Scratch resulting in a game design sheet that could be used for Scratch game development. Before we proceed, let us ask an important question: Why do we need detailed game design? Having a particular game idea expressed through storyboards is enough if our game is fairly simple in terms of number of screens and complexity of in-screen interactions. In case our game idea is rather complex, it is not so easy to interpret the storyboard in particular technical decisions. Ambiguities may exist and should be resolved to end-up with a viable implementation. Detailed game design offers the possibility to turn storyboards into a workable plan so that actual development could start. Good detailed design could turn technical issues into complete non-issues. To this end we need a design methodology that exploits factors common to the structure of virtually all games in order to use these common factors as basic design concepts to develop the detailed designs. We will adopt the methodology termed tokenization from [Rollings & Morris, 2004]. Studying any game (take for example games like Pong, Pac-Man or even non-computer games like Chess and Scrabble) one could identify the following common elements: All games have at least one player. All games have discrete elements that directly or indirectly manipulated by the player. These elements may be referred to as objects, or sprites. Let us call them tokens to avoid confusion with the semantics of the previous words. Tokens are supervised and managed by the computer (the game software, to be precise) according to the rules of the game as implemented in the software and responding to player actions. Think of simple game like Pong. Could you identify the tokens of the game? Note that: The player could be represented by an avatar token Tokens could be hierarchically organized (e.g. a player avatar could consist of a token that is directly manipulated by the player like the player s bat in Pong and another token to present information about the player s score or health or other visual cue related to player s state). The game as a whole could be represented by a game world token that is a container for all the other tokens. 6

7 Consequently, tokens could be visualized as a hierarchical tree rooted at the game world token. To avoid complexity, we could show in these diagram groups of similar tokens (token categories) as one node. Having identified the tokens of the game under consideration, the next step is to model inter-token interactions. When two tokens interact (e.g. when the ball collides with a bat in Pong) an event is generated. Each token receives a message about the event that happened and what other token is related to the event occurrence. Depending on the type of the event, the receiving token behaves in a way they essentially implement game rules and interaction specified in the storyboard design. The tool to represent token interactions is the token interaction matrix. The token interaction matrix is a tabular representation to inter-token interactions that presents what interactions are allowed and what are not allowed and what kind of event is produced as a result of each interaction between two tokens. To make the matrix less complex, we use token categories of similarly behaving tokens. The token interaction matrix facilitates visual check of most important interactions, identification of missing interactions or possible design flaws that should be rectified. It is also useful for finding unexpected chain reactions (or vicious circles, if you prefer) that may be desirable or may render the game unplayable. Depending on our need to keep or eliminate these chain interactions, we should change the interaction modeling accordingly. There are cases, however, when the token interaction matrix is not enough to give a clear picture about a complex process that consists of a series of events being triggered by token interactions. In that case, flow diagrams could be used where the sequencing and branching of events is shown in detail. For complex games, it usual to have tokens that can exist in different states. Depending on its state, a token could have different behaviour and different kind of interactions with the other tokens of the game. For example, in Pac-Man, a ghost changes from hunting state to hunted state as soon as the pac-man each a special pellet. A similar state change happens for the pac-man itself. To model these intra-token state changes, the token-interaction matrix is not appropriate. We need to employ finite-state machines that model how state transitions are triggered as a result of event occurrences. In general, a finite-state machine is a device that has a number of different states, some transitions between them and inputs. In any given time the current state can change or remain the same according to the inputs. More information as well as a small example on what is a finite-state machine can be found here: Finite-state machines could be, in some cases, general descriptions of branching conditions between game screens or levels (these could be considered as different states of the game world) that could be applied to a variety of games of the same genre Preparing your work Initially participants will be introduced to detailed game design through tokenization as a general method that could be adopted independent of the game implementation platform used. The need for detailed game design will be made clear and several examples of the concepts related to tokenization will be given through slide presentation. Examples of token hierarchy, token interaction matrix, events flow diagrams and finite state machines for token state transitions will be given through slides that accompany this module. 7

8 Following this introductory phase, the participants will be invited to use Scratch for developing a simple game following the detailed worksheets that accompany this module. The detailed design of this game will be shown in a more simple form suited for Scratch games. During the personalization phase the participants will be asked to develop a detailed game design related to their personal interests and they will be supported to start developing it in Scratch. This activity may continue during the next module of the learning unit, if necessary This is very important In a seminal paper [Kafai, 2006] on the distinction between playing and making games for learning, Yasmin Kafai concludes that: In the case of instructional games, a great deal of thought is spent by educational designers on content matters, graphical representations, and instructional venues. The greatest learning benefit remains reserved for those engaged in the design process, the game designers, and not those at the receiving end, the game players. After all, the game player is not partial to the discussions involved in developing valid instructional game ideas, designs, and strategies. What finds its way into the final designs is only a substrate of those discussions. In the case of constructionist games, the learner is involved in all the design decisions and begins to develop technological fluency. Just as fluency in language means much more than knowing facts about the language, technological fluency involves not only knowing how to use new technological tools but also knowing how to make things of significance with those tools and most important, develop new ways of thinking based on use of those tools. Beyond that, game-making activities offer an entry point for young gamers into the digital culture not just as consumers but also as producers. [Kafai, 2006] Now you are prepared to see practices Building technological fluency through game design and development is an issue that is relevant for educators, adults and children. Educators could develop their own educational games to make their teaching more engaging and tailored to the needs of their students. Adults and children could develop their own games as a way to express themselves or, if this is done jointly by parent-child teams for example, to enter into an intergenerational dialogue that will strengthen the family links and create new learning opportunities. In the following section we present some indicative practical activities structured around game design and game development and we give further links to those interesting in organizing such kind of interventions Tutorial 2- Hands on! Following a predefined game storyboard supported by a detailed game design detailed worksheets can help a novice learn the basics of a game development platform. This

9 approach has been used during the pskills project to introduce Scratch to educators and can be followed, with appropriate adaptations, for adults and/or children in an intergenerational learning framework that adopts game development as part of its objectives. The approach is essentially the same as the one used during this module to introduce the participants to Scratch What? Game development using Scratch Why? Knowing how to develop a game can help in more deep understanding on games and it is an important aspect of the so called gaming literacy [Felini, 2008] When? This activity may need 2-3 hours to be implemented and can be done without any other time constraints depending on the availability of the participants and the organizer of the activity Where? Depending on the target group, this practical activity could be implemented in classroom, in non-formal learning settings (e.g. in a session organized in a municipal library) or remotely using a networked learning environment to disseminated the learning material and support the learners How? Participants are given a game storyboard that describes the game idea. Then, a very short introduction to Scratch terminology is offered along with the presentation of the game as it will be when finished by each participant. If necessary, the participants are invited to play the game themselves to have a personal view of how the game looks like. Then, a Scratch game design sheet is presented that describes in detail how the game has been designed. Finally, learning activity sheets are given to the participants to follow and develop the game step-bystep Who? Participants in this activity may be children or adults or a mixed audience with children and adults working together. The work to be done following the learning activity worksheets could be done individually or in groups. To work in groups it is necessary that each group works in the same physical place using the same computer External Aids Getting Started with Scratch: Shall we learn Scratch programming ebook (contains the Scratch game design sheet of this module): A video tutorial on creating a pong game in Scratch: (this is a link to the first of the five parts of the tutorial). A guide on how to organize events on introducing children, educators and adults to Scratch:

10 df. Finally a very useful set of tutorials about scratch that range from beginners to very advanced users can be found here: _development 2.2. Introducing an example of practice A team from researchers at the Technical University of Crete worked with teachers in local primary school on the development of educational mini games to support children in their study of school subjects after the school. The team used storyboards to design the games and Scratch to develop them. The objective was to introduce primary school teachers in game design and development using Scratch to enable them develop educational games for their students. The first example is a clock game to help pupils learn the time and how to read an arm clock. The storyboard shows the design of the game and the screenshot that follows the first prototype (no graphics incorporated) in Scratch. 10

11 This game proved to be rather complicated with respect to the synchronization of clock arms and their smooth and realistic movement. A typical primary teacher would need help from a technically skilled person to achieve this kind of movement. The second example is a geography game to help pupils learn regions of Greece. The game, as shown in the storyboard, initially presents a puzzle with the regions of Greece at random places and asks the pupil to arrange them on the map. After arranging them, the pupil is asked to color them (each region should be colored in a certain color). 11

12 The screenshot below shows the first prototype of this game in Scratch (only simple graphics used). Scratch is used to organized workshops for children and for adults on game development world-wide. An example of such activities organized in public libraries of USA is described at [Myers, 2008]. If you want to organize an activity for children and/or adults to introduce Scratch, you may find it very useful to consult the guide available at A guide on how to organize events on introducing children, educators and adults to Scratch: e.pdf 3- Final Remarks We have seen how we could develop our own games using a simple platform (Scratch) that is also appropriate for organizing intergenerational learning activities focusing on game development as an essential part of gaming literacy and as an engaging form of intergenerational collaboration creating new opportunities for learning. We have seen methodologies to design games as an important step before actual game development. Detailed game designs could be used as a resource for intergenerational game development activities along with storyboards (to convey the general game ideas before presenting the detailed design) and learning activity worksheets to facilitate novices in their first use of game development platforms like Scratch. In the following final module of this learning unit, we will develop a more holistic approach to intergenerational learning through games. We will see how one could organize and support game communities where people design, produce and play their own games. These communities could be organized according to distinct roles to account for different skills, needs 12

13 and interests of their members. Their communication could be supported using social networks. The workflows in such a community is organized in certain phases and all the methodologies and tools presented so far about game analysis, evaluation, and design could be used to facilitate the communication within each phase between participants playing different roles (players or testers, designers, and developers) 4- References Felini, D. (2008). Media Education and video games- An action research project with adolescents in an out-of-school educational context. Paper presented at the International Conference on "Youth, Learning, and the Media". Zhejiang University - People's Republic of China, Hangzhou, China, March 27-28, [Retrieved from on 20/7/2012] Kafai, Y. (2006) Playing and making games for learning. Instructionist and constructionist perspectives for game studies. In: Games and Culture. A Journal of Interactive Media, 1 (1), pp Myers, B. (2008). Minds at Play: Using Computer Game Design to Promote Media Literacy. American Libraries, May [Retrieved from at 20/7/2012] Rollings, A., Morris, D. (2004).Game Architecture and Design - A New Edition, New Riders ISBN:

UNIT 5 Games and social media to promote intergenerational learning. Module 1 Introduction: Understanding and classifying games

UNIT 5 Games and social media to promote intergenerational learning. Module 1 Introduction: Understanding and classifying games 2012-2013 Module 1 Introduction: Understanding and classifying games Advanced Training Course Adults Learning for Intergenerational Creative Experiences This training course is delivered in the context

More information

The Game Development Process

The Game Development Process The Game Development Process Game Architecture Tokens Initial Architecture Development Nearing Release Postmortem Outline 1 Game Decomposition Consider: Pong, Frogger, Pac-Man, Missle Command, Zelda, Virtua

More information

Years 9 and 10 standard elaborations Australian Curriculum: Design and Technologies

Years 9 and 10 standard elaborations Australian Curriculum: Design and Technologies Purpose The standard elaborations (SEs) provide additional clarity when using the Australian Curriculum achievement standard to make judgments on a five-point scale. They can be used as a tool for: making

More information

Years 5 and 6 standard elaborations Australian Curriculum: Design and Technologies

Years 5 and 6 standard elaborations Australian Curriculum: Design and Technologies Purpose The standard elaborations (SEs) provide additional clarity when using the Australian Curriculum achievement standard to make judgments on a five-point scale. They can be used as a tool for: making

More information

Analyzing Games.

Analyzing Games. Analyzing Games staffan.bjork@chalmers.se Structure of today s lecture Motives for analyzing games With a structural focus General components of games Example from course book Example from Rules of Play

More information

Study: Visual Communication & Design

Study: Visual Communication & Design CATHOLIC REGIONAL COLLEGE SYDENHAM Rationale: Study: Visual Communication & Design Visual Communication is a bridge between an idea and its intended audience. In the fields of architecture, engineering,

More information

Winthrop Primary School

Winthrop Primary School Winthrop Primary School Information Communication Technology Plan & Scope and Sequence (DRAFT) 2015 2016 Aim: To integrate across all Australian Curriculum learning areas. Classroom teachers delivering

More information

in the New Zealand Curriculum

in the New Zealand Curriculum Technology in the New Zealand Curriculum We ve revised the Technology learning area to strengthen the positioning of digital technologies in the New Zealand Curriculum. The goal of this change is to ensure

More information

COMMISSION OF THE EUROPEAN COMMUNITIES

COMMISSION OF THE EUROPEAN COMMUNITIES COMMISSION OF THE EUROPEAN COMMUNITIES Brussels, 28.3.2008 COM(2008) 159 final 2008/0064 (COD) Proposal for a DECISION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL concerning the European Year of Creativity

More information

September 27, 2017 ISSN

September 27, 2017 ISSN September 27, 2017 ISSN 1094-5296 Kafai, Y. B., & Burke, Q. (2016). Connected gaming: What making video games can teach us about learning and literacy. Cambridge, MA: The MIT Press. Pp. 201 ISBN: 9780262035378

More information

Years 3 and 4 standard elaborations Australian Curriculum: Design and Technologies

Years 3 and 4 standard elaborations Australian Curriculum: Design and Technologies Purpose The standard elaborations (SEs) provide additional clarity when using the Australian Curriculum achievement standard to make judgments on a five-point scale. They can be used as a tool for: making

More information

Support Notes (Issue 1) September Play and Learn. Certificate in Digital Applications (DA204) Game Making

Support Notes (Issue 1) September Play and Learn. Certificate in Digital Applications (DA204) Game Making Support Notes (Issue 1) September 2014 Certificate in Digital Applications (DA204) Game Making Play and Learn Introduction Before tackling the Summative Project Brief (SPB), students should have acquired

More information

Design and Technology Subject Outline Stage 1 and Stage 2

Design and Technology Subject Outline Stage 1 and Stage 2 Design and Technology 2019 Subject Outline Stage 1 and Stage 2 Published by the SACE Board of South Australia, 60 Greenhill Road, Wayville, South Australia 5034 Copyright SACE Board of South Australia

More information

Skylands Learning is your trusted learning advisor. That is our promise your trusted learning advisor. Four simple words.

Skylands Learning is your trusted learning advisor. That is our promise your trusted learning advisor. Four simple words. Page 1 of 12 METHODOLOGY Who we are Skylands Learning is your trusted learning advisor. That is our promise your trusted learning advisor. Four simple words. Not enough information? At Skylands, we have

More information

Individual Test Item Specifications

Individual Test Item Specifications Individual Test Item Specifications 8208120 Game and Simulation Design 2015 The contents of this document were developed under a grant from the United States Department of Education. However, the content

More information

Methodology for Agent-Oriented Software

Methodology for Agent-Oriented Software ب.ظ 03:55 1 of 7 2006/10/27 Next: About this document... Methodology for Agent-Oriented Software Design Principal Investigator dr. Frank S. de Boer (frankb@cs.uu.nl) Summary The main research goal of this

More information

CURRICULUM MAP. Course/ Subject: Multimedia (Visual) Communication Grade: 8th. Month: Phase 1 of 3. Enduring Understanding

CURRICULUM MAP. Course/ Subject: Multimedia (Visual) Communication Grade: 8th. Month: Phase 1 of 3. Enduring Understanding CURRICULUM MAP Course/ Subject: Multimedia (Visual) Communication Grade: 8th Month: Phase 1 of 3 Enduring Understanding Technology is not an object or artifact but a process by which we solve problems.

More information

ROBOTC: Programming for All Ages

ROBOTC: Programming for All Ages z ROBOTC: Programming for All Ages ROBOTC: Programming for All Ages ROBOTC is a C-based, robot-agnostic programming IDEA IN BRIEF language with a Windows environment for writing and debugging programs.

More information

INTELLIGENT GUIDANCE IN A VIRTUAL UNIVERSITY

INTELLIGENT GUIDANCE IN A VIRTUAL UNIVERSITY INTELLIGENT GUIDANCE IN A VIRTUAL UNIVERSITY T. Panayiotopoulos,, N. Zacharis, S. Vosinakis Department of Computer Science, University of Piraeus, 80 Karaoli & Dimitriou str. 18534 Piraeus, Greece themisp@unipi.gr,

More information

Systems Engineering CSC 595_495 Spring 2018 Howard Rosenthal

Systems Engineering CSC 595_495 Spring 2018 Howard Rosenthal Systems Engineering CSC 595_495 Spring 2018 Howard Rosenthal 1 Notice This course is based on and includes material from the text: The Engineering Design of Systems: Models and Methods (Wiley Series in

More information

Support Notes (Issue 1) September Certificate in Digital Applications (DA104) Game Making

Support Notes (Issue 1) September Certificate in Digital Applications (DA104) Game Making Support Notes (Issue 1) September 2016 Certificate in Digital Applications (DA104) Game Making Platformer Key points for this SPB The DA104 SPB 0916 is valid for moderation in June 2017, December 2017,

More information

Introduction to Engineering Design

Introduction to Engineering Design Prerequisite: None Credit Value: 5 ABSTRACT The Introduction to Engineering Design course is the first in the Project Lead The Way preengineering sequence. Students are introduced to the design process,

More information

BODILY NON-VERBAL INTERACTION WITH VIRTUAL CHARACTERS

BODILY NON-VERBAL INTERACTION WITH VIRTUAL CHARACTERS KEER2010, PARIS MARCH 2-4 2010 INTERNATIONAL CONFERENCE ON KANSEI ENGINEERING AND EMOTION RESEARCH 2010 BODILY NON-VERBAL INTERACTION WITH VIRTUAL CHARACTERS Marco GILLIES *a a Department of Computing,

More information

Report OIE Animal Welfare Global Forum Supporting implementation of OIE Standards Paris, France, March 2018

Report OIE Animal Welfare Global Forum Supporting implementation of OIE Standards Paris, France, March 2018 Report OIE Animal Welfare Global Forum Supporting implementation of OIE Standards Paris, France, 28-29 March 2018 1. Background: In fulfilling its mandate to protect animal health and welfare, the OIE

More information

micro:bit for primary schools mb4ps.co.uk

micro:bit for primary schools mb4ps.co.uk About the lesson plans The numbers within the Content section relate to the corresponding slide on the lesson PowerPoint Each lesson will typically take a Y4/5 class around 35 minutes, which would include

More information

Enduring Understandings 1. Design is not Art. They have many things in common but also differ in many ways.

Enduring Understandings 1. Design is not Art. They have many things in common but also differ in many ways. Multimedia Design 1A: Don Gamble * This curriculum aligns with the proficient-level California Visual & Performing Arts (VPA) Standards. 1. Design is not Art. They have many things in common but also differ

More information

The AMADEOS SysML Profile for Cyber-physical Systems-of-Systems

The AMADEOS SysML Profile for Cyber-physical Systems-of-Systems AMADEOS Architecture for Multi-criticality Agile Dependable Evolutionary Open System-of-Systems FP7-ICT-2013.3.4 - Grant Agreement n 610535 The AMADEOS SysML Profile for Cyber-physical Systems-of-Systems

More information

IED Detailed Outline. Unit 1 Design Process Time Days: 16 days. An engineering design process involves a characteristic set of practices and steps.

IED Detailed Outline. Unit 1 Design Process Time Days: 16 days. An engineering design process involves a characteristic set of practices and steps. IED Detailed Outline Unit 1 Design Process Time Days: 16 days Understandings An engineering design process involves a characteristic set of practices and steps. Research derived from a variety of sources

More information

COMMISSION OF THE EUROPEAN COMMUNITIES COMMISSION RECOMMENDATION

COMMISSION OF THE EUROPEAN COMMUNITIES COMMISSION RECOMMENDATION COMMISSION OF THE EUROPEAN COMMUNITIES Brussels, 20.8.2009 C(2009) 6464 final COMMISSION RECOMMENDATION 20.8.2009 on media literacy in the digital environment for a more competitive audiovisual and content

More information

Iowa Core Technology Literacy: A Closer Look

Iowa Core Technology Literacy: A Closer Look Iowa Core Technology Literacy: A Closer Look Creativity and Innovation (Make It) Use technology resources to create original Demonstrate creative thinking in the design products, identify patterns and

More information

Praxis Technology Education (5051) Study Plan Description of content

Praxis Technology Education (5051) Study Plan Description of content Page 1 I. Technology and Society (15%) A. Understands the nature of technology, technology education, and technological literacy B. Understands how invention and innovation occur, how they are influenced

More information

UDIS Programme of Inquiry

UDIS Programme of Inquiry UDIS Programme of Inquiry This is the school s programme of inquiry. These units are used at every level of the school from Preschool to Year 6. For both K1/K2, Y1/2 and Y3/4 each set of classes shares

More information

Interaction Design in Digital Libraries : Some critical issues

Interaction Design in Digital Libraries : Some critical issues Interaction Design in Digital Libraries : Some critical issues Constantine Stephanidis Foundation for Research and Technology-Hellas (FORTH) Institute of Computer Science (ICS) Science and Technology Park

More information

THE ACADEMIC-ENTERPRISE EXPERIENCES FRAMEWORK AS A GUIDE FOR DESIGN EDUCATION

THE ACADEMIC-ENTERPRISE EXPERIENCES FRAMEWORK AS A GUIDE FOR DESIGN EDUCATION INTERNATIONAL CONFERENCE ON ENGINEERING AND PRODUCT DESIGN EDUCATION 8 & 9 SEPTEMBER 2016, AALBORG UNIVERSITY, DENMARK THE ACADEMIC-ENTERPRISE EXPERIENCES FRAMEWORK AS A GUIDE FOR DESIGN EDUCATION João

More information

1.1 Investigate the capabilities and limitations of a range of digital gaming platforms

1.1 Investigate the capabilities and limitations of a range of digital gaming platforms Unit Title: Game design concepts Level: 2 OCR unit number: 215 Credit value: 4 Guided learning hours: 30 Unit reference number: T/600/7735 Unit purpose and aim This unit helps learners to understand the

More information

Rolling workplan of the Technology Executive Committee for

Rolling workplan of the Technology Executive Committee for Technology Eecutive Committee Anne Rolling workplan of the Technology Eecutive Committee for 2016 2018 I. Introduction 1. Technology development and transfer is one the pillars of the UNFCCC. In 2010 in

More information

Chinook's Edge School Division No. 73

Chinook's Edge School Division No. 73 LOCALLY DEVELOPED COURSE OUTLINE Sculpting (Advanced Techniques)15 Sculpting (Advanced Techniques)25 Sculpting (Advanced Techniques)35 Submitted By: Chinook's Edge School Division No. 73 Submitted On:

More information

Codebreaker Lesson Plan

Codebreaker Lesson Plan Codebreaker Lesson Plan Summary The game Mastermind (figure 1) is a plastic puzzle game in which one player (the codemaker) comes up with a secret code consisting of 4 colors chosen from red, green, blue,

More information

I. Introduction. Cover note. A. Mandate. B. Scope of the note. Technology Executive Committee. Fifteenth meeting. Bonn, Germany, September 2017

I. Introduction. Cover note. A. Mandate. B. Scope of the note. Technology Executive Committee. Fifteenth meeting. Bonn, Germany, September 2017 Technology Executive Committee 31 August 2017 Fifteenth meeting Bonn, Germany, 12 15 September 2017 Draft TEC and CTCN inputs to the forty-seventh session of the Subsidiary Body for Scientific and Technological

More information

Kansas Curricular Standards for Dance and Creative Movement

Kansas Curricular Standards for Dance and Creative Movement Kansas Curricular Standards for Dance and Creative Movement Kansas State Board of Education 2017 Kansas Curricular Standards for Dance and Creative Movement Joyce Huser Fine Arts Education Consultant Kansas

More information

Media Literacy Expert Group Draft 2006

Media Literacy Expert Group Draft 2006 Page - 2 Media Literacy Expert Group Draft 2006 INTRODUCTION The media are a very powerful economic and social force. The media sector is also an accessible instrument for European citizens to better understand

More information

SCREENWRITING TEACHER GUIDE AUSTRALIAN FILM TELEVISION & RADIO SCHOOL

SCREENWRITING TEACHER GUIDE AUSTRALIAN FILM TELEVISION & RADIO SCHOOL TEACHER GUIDE BUILDING 130, THE ENTERTAINMENT QUARTER, MOORE PARK NSW 2021 PO BOX 2286, STRAWBERRY HILLS NSW 2012 TEL: 1300 131 461 +61 (0)2 9805 6611 FAX: +61 (0)2 9887 1030 WWW.AFTRS.COM.AU AUSTRALIAN

More information

Information and Communication Technology

Information and Communication Technology Information and Communication Technology Lower Secondary Subject Area Guidelines November 2011 Contents Rationale... 3 Planning using these guidelines... 4 Mapping Essential Learnings and Year 10 Guidelines...

More information

OPEN SOURCES-BASED COURSE «ROBOTICS» FOR INCLUSIVE SCHOOLS IN BELARUS

OPEN SOURCES-BASED COURSE «ROBOTICS» FOR INCLUSIVE SCHOOLS IN BELARUS УДК 376-056(476) OPEN SOURCES-BASED COURSE «ROBOTICS» FOR INCLUSIVE SCHOOLS IN BELARUS Nikolai Gorbatchev, Iouri Zagoumennov Belarus Educational Research Assosiation «Innovations in Education», Belarus

More information

MINERVA: IMPROVING THE PRODUCTION OF DIGITAL CULTURAL HERITAGE IN EUROPE. Rossella Caffo - Ministero per i Beni e le Attività Culturali, Italia

MINERVA: IMPROVING THE PRODUCTION OF DIGITAL CULTURAL HERITAGE IN EUROPE. Rossella Caffo - Ministero per i Beni e le Attività Culturali, Italia MINERVA: IMPROVING THE PRODUCTION OF DIGITAL CULTURAL HERITAGE IN EUROPE. Rossella Caffo - Ministero per i Beni e le Attività Culturali, Italia Abstract The MINERVA project is a network of the ministries

More information

introduction to the course course structure topics

introduction to the course course structure topics topics: introduction to the course brief overview of game programming how to learn a programming language sample environment: scratch to do instructor: cisc1110 introduction to computing using c++ gaming

More information

New A Level Design and Technology: Product Design

New A Level Design and Technology: Product Design New A Level Design and Technology: Product Design Information for OCR centres transferring to new specifications for first teaching in September 2008 This document maps the current A Level Design and Technology:

More information

D8.1 PROJECT PRESENTATION

D8.1 PROJECT PRESENTATION D8.1 PROJECT PRESENTATION Approval Status AUTHOR(S) NAME AND SURNAME ROLE IN THE PROJECT PARTNER Daniela De Lucia, Gaetano Cascini PoliMI APPROVED BY Gaetano Cascini Project Coordinator PoliMI History

More information

Design Technology. IB DP course syllabus

Design Technology. IB DP course syllabus Design Technology IB DP course syllabus 2016-2018 School of Young Politicians Gymnasium 1306 Teacher: Mariam Ghukasyan Nature of design technology Design, and the resultant development of new technologies,

More information

Pong! The oldest commercially available game in history

Pong! The oldest commercially available game in history Pong! The oldest commercially available game in history Resources created from the video tutorials provided by David Phillips on http://www.teach-ict.com Stage 1 Before you start to script the game you

More information

G54GAM Coursework 2 & 3

G54GAM Coursework 2 & 3 G54GAM Coursework 2 & 3 Summary You are required to design and prototype a computer game. This coursework consists of two parts describing and documenting the design of your game (coursework 2) and developing

More information

Dan Davis Emerging Technologies Assessment Project ITEC7445

Dan Davis Emerging Technologies Assessment Project ITEC7445 Dan Davis Emerging Technologies Assessment Project ITEC7445 Shared Vision Columbia County s vision of empowering and inspiring ALL learners to excel is met with the rigor, depth, and engagement found

More information

VOLUME ONE. Getting Started with Guitar presents: guitar intuition. with. Lisa McCormick

VOLUME ONE. Getting Started with Guitar presents: guitar intuition. with. Lisa McCormick VOLUME ONE Getting Started with Guitar presents: guitar intuition with Lisa McCormick 2009 Lisa McCormick. All rights reserved. Guitar Intuition is a Lisa McCormick Music, LLC publication. Welcome to Guitar

More information

Lights, Camera, Literacy! LCL! High School Edition. Glossary of Terms

Lights, Camera, Literacy! LCL! High School Edition. Glossary of Terms Lights, Camera, Literacy! High School Edition Glossary of Terms Act I: The beginning of the story and typically involves introducing the main characters, as well as the setting, and the main initiating

More information

Menu. Overview. Instructional Objective

Menu. Overview. Instructional Objective Turn On the Lights! Creator: Lila Azouz Contact: lilazouz@gmail.com Simulation can be found here: http://scratch.mit.edu/projects/zulili/2183368 Menu Overview Instructional Objective Learners Context Scope

More information

Abstract. Justification. Scope. RSC/RelationshipWG/1 8 August 2016 Page 1 of 31. RDA Steering Committee

Abstract. Justification. Scope. RSC/RelationshipWG/1 8 August 2016 Page 1 of 31. RDA Steering Committee Page 1 of 31 To: From: Subject: RDA Steering Committee Gordon Dunsire, Chair, RSC Relationship Designators Working Group RDA models for relationship data Abstract This paper discusses how RDA accommodates

More information

Foresight Impact on Policy making and Lessons for New Member States and Candidate Countries Insights from the FORLEARN mutual learning process

Foresight Impact on Policy making and Lessons for New Member States and Candidate Countries Insights from the FORLEARN mutual learning process Foresight Impact on Policy making and Lessons for New Member States and Candidate Countries Insights from the FORLEARN mutual learning process Cristiano CAGNIN, Philine WARNKE Fabiana SCAPOLO, Olivier

More information

CURRICULUM MAP. Course/ Subject: Principles of Technology Grade: Month: Sept-Oct (Communication) Enduring Understanding

CURRICULUM MAP. Course/ Subject: Principles of Technology Grade: Month: Sept-Oct (Communication) Enduring Understanding CURRICULUM MAP Course/ Subject: Principles of Technology Grade: 9-12 Month: Sept-Oct (Communication) Enduring Understanding Technology is created, used and modified by humans. A technological world requires

More information

General Education Rubrics

General Education Rubrics General Education Rubrics Rubrics represent guides for course designers/instructors, students, and evaluators. Course designers and instructors can use the rubrics as a basis for creating activities for

More information

GLOSSARY for National Core Arts: Media Arts STANDARDS

GLOSSARY for National Core Arts: Media Arts STANDARDS GLOSSARY for National Core Arts: Media Arts STANDARDS Attention Principle of directing perception through sensory and conceptual impact Balance Principle of the equitable and/or dynamic distribution of

More information

Committee on Development and Intellectual Property (CDIP)

Committee on Development and Intellectual Property (CDIP) E CDIP/10/13 ORIGINAL: ENGLISH DATE: OCTOBER 5, 2012 Committee on Development and Intellectual Property (CDIP) Tenth Session Geneva, November 12 to 16, 2012 DEVELOPING TOOLS FOR ACCESS TO PATENT INFORMATION

More information

PROJECT FACT SHEET GREEK-GERMANY CO-FUNDED PROJECT. project proposal to the funding measure

PROJECT FACT SHEET GREEK-GERMANY CO-FUNDED PROJECT. project proposal to the funding measure PROJECT FACT SHEET GREEK-GERMANY CO-FUNDED PROJECT project proposal to the funding measure Greek-German Bilateral Research and Innovation Cooperation Project acronym: SIT4Energy Smart IT for Energy Efficiency

More information

Selecting, Developing and Designing the Visual Content for the Polymer Series

Selecting, Developing and Designing the Visual Content for the Polymer Series Selecting, Developing and Designing the Visual Content for the Polymer Series A Review of the Process October 2014 This document provides a summary of the activities undertaken by the Bank of Canada to

More information

PASSAIC COUNTY TECHNICAL INSTITUTE 45 Reinhardt Road Wayne, NJ. Academic Curriculum Unit Planner. Multimedia & CAD. Course # S7120.

PASSAIC COUNTY TECHNICAL INSTITUTE 45 Reinhardt Road Wayne, NJ. Academic Curriculum Unit Planner. Multimedia & CAD. Course # S7120. Multimedia & CAD Course # S7120 August 2018 Multimedia:CAD.docx Page 1 Unit Plan Title: Introduction to Proprietary & Open Source and Web-Based Programs 8.2.12.A.2 - Analyze a current technology and the

More information

Second Annual Forum on Science, Technology and Innovation for the Sustainable Development Goals

Second Annual Forum on Science, Technology and Innovation for the Sustainable Development Goals Second Annual Forum on Science, Technology and Innovation for the Sustainable Development Goals United Nations Headquarters, New York 15 and 16 May, 2017 DRAFT Concept Note for the STI Forum Prepared by

More information

YEAR 7 & 8 THE ARTS. The Visual Arts

YEAR 7 & 8 THE ARTS. The Visual Arts VISUAL ARTS Year 7-10 Art VCE Art VCE Media Certificate III in Screen and Media (VET) Certificate II in Creative Industries - 3D Animation (VET)- Media VCE Studio Arts VCE Visual Communication Design YEAR

More information

Facilitator s Guide to Getting Started

Facilitator s Guide to Getting Started Facilitator s Guide to Getting Started INTRODUCTION This Facilitator Guide will help you facilitate a game design workshop for people who are new to TaleBlazer. The curriculum as written will take at least

More information

PHOTOGRAPHY Course Descriptions and Outcomes

PHOTOGRAPHY Course Descriptions and Outcomes PHOTOGRAPHY Course Descriptions and Outcomes PH 2000 Photography 1 3 cr. This class introduces students to important ideas and work from the history of photography as a means of contextualizing and articulating

More information

Scholarly Article Review. The Potential of Using Virtual Reality Technology in Physical Activity Settings. Aaron Krieger.

Scholarly Article Review. The Potential of Using Virtual Reality Technology in Physical Activity Settings. Aaron Krieger. Scholarly Article Review The Potential of Using Virtual Reality Technology in Physical Activity Settings Aaron Krieger October 22, 2015 The Potential of Using Virtual Reality Technology in Physical Activity

More information

THE INTEGRATION OF NEW MEDIA LITERACY AND THE RIGHTS OF THE CHILDAT THE DIGITAL MEDIA INTO THE CURRICULUM

THE INTEGRATION OF NEW MEDIA LITERACY AND THE RIGHTS OF THE CHILDAT THE DIGITAL MEDIA INTO THE CURRICULUM THE INTEGRATION OF NEW MEDIA LITERACY AND THE RIGHTS OF THE CHILDAT THE DIGITAL MEDIA INTO THE CURRICULUM Asst.Prof.Dr. Duygu AYDIN / Selcuk University Betül KARAOSMANOĞLU / Pamukkale University DIGITAL

More information

PBL Challenge: Of Mice and Penn McKay Orthopaedic Research Laboratory University of Pennsylvania

PBL Challenge: Of Mice and Penn McKay Orthopaedic Research Laboratory University of Pennsylvania PBL Challenge: Of Mice and Penn McKay Orthopaedic Research Laboratory University of Pennsylvania Can optics can provide a non-contact measurement method as part of a UPenn McKay Orthopedic Research Lab

More information

Collaboration for Human Rights Due Diligence

Collaboration for Human Rights Due Diligence February 20, 2014 Collaboration for Human Rights Due Diligence Human rights are one of the core CSR topics sparking discussions and various activities in recent years, including in Japan. Since September

More information

Future Personas Experience the Customer of the Future

Future Personas Experience the Customer of the Future Future Personas Experience the Customer of the Future By Andreas Neef and Andreas Schaich CONTENTS 1 / Introduction 03 2 / New Perspectives: Submerging Oneself in the Customer's World 03 3 / Future Personas:

More information

While entry is at the discretion of the centre it would be beneficial if candidates had the following IT skills:

While entry is at the discretion of the centre it would be beneficial if candidates had the following IT skills: National Unit Specification: general information CODE F917 11 SUMMARY The aim of this Unit is for candidates to gain an understanding of processes involved in the final stages of computer game development.

More information

Module Catalogue Faculty of Architecture and the Built Environment Undergraduate Study Abroad 2018/9 Semester 2

Module Catalogue Faculty of Architecture and the Built Environment Undergraduate Study Abroad 2018/9 Semester 2 Module Catalogue Faculty of Architecture and the Built Environment Undergraduate Study Abroad 018/9 Westminster Electives These modules are cross-disciplinary in nature and have been co-created with students

More information

II. The mandates, activities and outputs of the Technology Executive Committee

II. The mandates, activities and outputs of the Technology Executive Committee TEC/2018/16/13 Technology Executive Committee 27 February 2018 Sixteenth meeting Bonn, Germany, 13 16 March 2018 Monitoring and evaluation of the impacts of the implementation of the mandates of the Technology

More information

The Industry 4.0 Journey: Start the Learning Journey with the Reference Architecture Model Industry 4.0

The Industry 4.0 Journey: Start the Learning Journey with the Reference Architecture Model Industry 4.0 The Industry 4.0 Journey: Start the Learning Journey with the Reference Architecture Model Industry 4.0 Marco Nardello 1 ( ), Charles Møller 1, John Gøtze 2 1 Aalborg University, Department of Materials

More information

Designing in the context of an assembly

Designing in the context of an assembly SIEMENS Designing in the context of an assembly spse01670 Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle Management Software

More information

UNIT Art and Design: Digital Media (SCQF level 6)

UNIT Art and Design: Digital Media (SCQF level 6) National Unit Specification: general information CODE F5CH 12 SUMMARY This Unit is designed to enable the candidate to explore and develop skills in digital media related to art and design disciplines.

More information

Individual Test Item Specifications

Individual Test Item Specifications Individual Test Item Specifications 8208110 Game and Simulation Foundations 2015 The contents of this document were developed under a grant from the United States Department of Education. However, the

More information

Design and technology

Design and technology Design and technology Programme of study for key stage 3 and attainment target (This is an extract from The National Curriculum 2007) Crown copyright 2007 Qualifications and Curriculum Authority 2007 Curriculum

More information

Contact info.

Contact info. Game Design Bio Contact info www.mindbytes.co learn@mindbytes.co 856 840 9299 https://goo.gl/forms/zmnvkkqliodw4xmt1 Introduction } What is Game Design? } Rules to elaborate rules and mechanics to facilitate

More information

Adopted CTE Course Blueprint of Essential Standards

Adopted CTE Course Blueprint of Essential Standards Adopted CTE Blueprint of Essential Standards 8210 Technology Engineering and Design (Recommended hours of instruction: 135-150) International Technology and Engineering Educators Association Foundations

More information

Chapter 1 The Innovative Bakery Dialogue

Chapter 1 The Innovative Bakery Dialogue Chapter 1 The Innovative Bakery Dialogue A methodology for SME bakeries to develop innovative sustainable products and services in a participatory process with their stakeholders Daniele Haiböck-Sinner

More information

Radical Change and Standing Up for Youth. Digital Natives are not Digital Zombies

Radical Change and Standing Up for Youth. Digital Natives are not Digital Zombies Radical Change and Standing Up for Youth Digital Natives are not Digital Zombies Eisenberg 2014 Mike Eisenberg Dean Emeritus & Professor with J. Elizabeth (Liz) Mills PhD Student Eisenberg 2014 Agenda

More information

UMLEmb: UML for Embedded Systems. II. Modeling in SysML. Eurecom

UMLEmb: UML for Embedded Systems. II. Modeling in SysML. Eurecom UMLEmb: UML for Embedded Systems II. Modeling in SysML Ludovic Apvrille ludovic.apvrille@telecom-paristech.fr Eurecom, office 470 http://soc.eurecom.fr/umlemb/ @UMLEmb Eurecom Goals Learning objective

More information

Unleash your inner artist Create a better business!

Unleash your inner artist Create a better business! Unleash your inner artist Create a better business! www.collaborativepainting.uk What is Collaborative Painting UK? Collaborative Painting UK specialise in facilitating creative arts team-building, training

More information

EQF Level Descriptors Theology and Religious Studies

EQF Level Descriptors Theology and Religious Studies EQF Level Descriptors Theology and Religious Studies Project Title: Sectoral Qualifications Framework for Humanities & Arts This project has been funded with support from the European Commission. This

More information

IMGD 1001: Fun and Games

IMGD 1001: Fun and Games IMGD 1001: Fun and Games Robert W. Lindeman Associate Professor Department of Computer Science Worcester Polytechnic Institute gogo@wpi.edu Outline What is a Game? Genres What Makes a Good Game? 2 What

More information

FP7 ICT Call 6: Cognitive Systems and Robotics

FP7 ICT Call 6: Cognitive Systems and Robotics FP7 ICT Call 6: Cognitive Systems and Robotics Information day Luxembourg, January 14, 2010 Libor Král, Head of Unit Unit E5 - Cognitive Systems, Interaction, Robotics DG Information Society and Media

More information

CPS331 Lecture: Search in Games last revised 2/16/10

CPS331 Lecture: Search in Games last revised 2/16/10 CPS331 Lecture: Search in Games last revised 2/16/10 Objectives: 1. To introduce mini-max search 2. To introduce the use of static evaluation functions 3. To introduce alpha-beta pruning Materials: 1.

More information

Getting ideas: watching the sketching and modelling processes of year 8 and year 9 learners in technology education classes

Getting ideas: watching the sketching and modelling processes of year 8 and year 9 learners in technology education classes Getting ideas: watching the sketching and modelling processes of year 8 and year 9 learners in technology education classes Tim Barnard Arthur Cotton Design and Technology Centre, Rhodes University, South

More information

SAMPLE. Lesson 1: Introduction to Game Design

SAMPLE. Lesson 1: Introduction to Game Design 1 ICT Gaming Essentials Lesson 1: Introduction to Game Design LESSON SKILLS KEY TERMS After completing this lesson, you will be able to: Describe the role of games in modern society (e.g., education, task

More information

Media Literacy European Policy Recommendations

Media Literacy European Policy Recommendations Media Literacy European Policy Recommendations EAVI S VERSION May 2014 Paolo Celot Prepared by EAVI with contributions from Partners and National Experts within the Emedus Project Table of Contents of

More information

Latin Squares for Elementary and Middle Grades

Latin Squares for Elementary and Middle Grades Latin Squares for Elementary and Middle Grades Yul Inn Fun Math Club email: Yul.Inn@FunMathClub.com web: www.funmathclub.com Abstract: A Latin square is a simple combinatorial object that arises in many

More information

IMGD 1001: Fun and Games

IMGD 1001: Fun and Games IMGD 1001: Fun and Games by Mark Claypool (claypool@cs.wpi.edu) Robert W. Lindeman (gogo@wpi.edu) Outline What is a Game? Genres What Makes a Good Game? Claypool and Lindeman, WPI, CS and IMGD 2 1 What

More information

Meta-models, Environment and Layers: Agent-Oriented Engineering of Complex Systems

Meta-models, Environment and Layers: Agent-Oriented Engineering of Complex Systems Meta-models, Environment and Layers: Agent-Oriented Engineering of Complex Systems Ambra Molesini ambra.molesini@unibo.it DEIS Alma Mater Studiorum Università di Bologna Bologna, 07/04/2008 Ambra Molesini

More information

ILO/Cinterfor Knowledge management in vocational training and South- South cooperation

ILO/Cinterfor Knowledge management in vocational training and South- South cooperation The Inter-American Centre for Knowledge Development in Vocational Training ILO/Cinterfor Knowledge management in vocational training and South- South cooperation Athens. November 15, 2011 Fernando Vargas

More information

Intro to Interactive Entertainment Spring 2017 Syllabus CS 1010 Instructor: Tim Fowers

Intro to Interactive Entertainment Spring 2017 Syllabus CS 1010 Instructor: Tim Fowers Intro to Interactive Entertainment Spring 2017 Syllabus CS 1010 Instructor: Tim Fowers Email: tim@fowers.net 1) Introduction Basics of Game Design: definition of a game, terminology and basic design categories.

More information

EUROPASS DIPLOMA SUPPLEMENT

EUROPASS DIPLOMA SUPPLEMENT EUROPASS DIPLOMA SUPPLEMENT TITLE OF THE DIPLOMA (ES) Técnico Superior en Mecatrónica Industrial TRANSLATED TITLE OF THE DIPLOMA (EN) (1) Higher Technician in Industrial Mechatronics ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

More information