Diferencia entre revisiones de «Curso Python DGA 2011/pygame/documentacion»
De WikiEducator
(Página creada con '{{:Curso Python DGA 2011/pygame/nav}} {{MiTitulo | Documentación}} == Videojuegos y Python == * http://wiki.python.org/moin/PythonGames == Pygame (doc oficial)== * http://w…') |
|||
(3 revisiones intermedias por el mismo usuario no mostrado) | |||
Línea 6: | Línea 6: | ||
== Videojuegos y Python == | == Videojuegos y Python == | ||
* http://wiki.python.org/moin/PythonGames | * http://wiki.python.org/moin/PythonGames | ||
+ | * http://wiki.python.org/moin/PythonGameLibraries | ||
== Pygame (doc oficial)== | == Pygame (doc oficial)== | ||
Línea 15: | Línea 16: | ||
=== En español === | === En español === | ||
* [http://www.losersjuegos.com.ar/_media/referencia/apuntes/guia_de_ejemplos_sobre_pygame/guia_de_ejemplos_sobre_pygame.pdf Chuleta de trozos de código] | * [http://www.losersjuegos.com.ar/_media/referencia/apuntes/guia_de_ejemplos_sobre_pygame/guia_de_ejemplos_sobre_pygame.pdf Chuleta de trozos de código] | ||
− | * http://www.losersjuegos.com.ar/referencia | + | * http://www.losersjuegos.com.ar/referencia |
* http://razonartificial.com/programar-videojuegos/ | * http://razonartificial.com/programar-videojuegos/ | ||
* http://pythonmania.wordpress.com/2010/03/23/tutorial-pygame-introduccion/ | * http://pythonmania.wordpress.com/2010/03/23/tutorial-pygame-introduccion/ | ||
+ | |||
=== En inglés === | === En inglés === | ||
* http://thepythongamebook.com/en:part2:pygame:step008 | * http://thepythongamebook.com/en:part2:pygame:step008 | ||
Línea 25: | Línea 27: | ||
=== Tutoriales avanzados === | === Tutoriales avanzados === | ||
+ | * Sprites Tutorial: http://www.sacredchao.net/~piman/writing/sprite-tutorial.shtml | ||
* http://eli.thegreenplace.net/category/programming/python/pygame-tutorial/ | * http://eli.thegreenplace.net/category/programming/python/pygame-tutorial/ | ||
* Razón artificial: tutoriales de tiles http://razonartificial.com/ | * Razón artificial: tutoriales de tiles http://razonartificial.com/ | ||
+ | |||
+ | === Cursos que usan pygame === | ||
+ | * http://cs.simpson.edu/?q=python_pygame_examples | ||
+ | * Curso de Fernando Salamero: http://videojuegos.comyr.com/ y [http://www.slideshare.net/fsalamero presentaciones] | ||
+ | * Introducción al Diseño y Programación de Videojuegos: http://www.ciroduran.com/disenajuegos | ||
+ | * http://www.alexkuhl.org/teaching/tip/summer/ | ||
+ | * http://www.helenemartin.com/2009-06-teaching-games-with-pygame/ | ||
+ | |||
+ | == Pygame en Android == | ||
+ | * http://pygame.renpy.org/ | ||
== Enseñar a programar con pygame == | == Enseñar a programar con pygame == | ||
* http://cs.simpson.edu/?q=python_pygame_examples | * http://cs.simpson.edu/?q=python_pygame_examples | ||
+ | * tech.canterburyschool.org/pycon/teaching_pygame.pdf | ||
+ | |||
+ | == Otros proyectos que usan pygame == | ||
+ | * http://www.pilas-engine.com.ar/ Pilas es un motor para hacer videojuegos de manera sencilla. | ||
+ | * gasp: | ||
+ | ** http://wiki.laptop.org/go/GASP | ||
+ | ** https://launchpad.net/gasp-core | ||
+ | ** http://openbookproject.net/pybiblio/gasp/ | ||
+ | |||
+ | == Enseñar a programar con videojuegos == | ||
+ | * [https://www.facultyresourcecenter.com/curriculum/pfv.aspx?ID=8119&c1=en-us&c2=0&Login= Introduction to Programming Through Game Development Using Microsoft XNA Game Studio] | ||
+ | * [https://www.facultyresourcecenter.com/curriculum/pfv.aspx?ID=8758&c1=en-us&c2=0&Login= Programming with C# and XNA 0.5: Jump Start] | ||
+ | * http://scratch.mit.edu/ | ||
+ | * http://alice.org | ||
+ | |||
+ | == Pygame en el OLPC (Actividades educativas con Pygame) == | ||
+ | * http://wiki.laptop.org/go/Pygame | ||
+ | * http://wiki.laptop.org/go/Game_development_HOWTO | ||
+ | * http://wiki.laptop.org/go/Game_templates | ||
+ | |||
+ | == IA en videojuegos == | ||
+ | * http://www.gamasutra.com/view/feature/3317/smart_move_intelligent_.php | ||
+ | * http://pygame.org/tags/astar | ||
+ | * http://theory.stanford.edu/~amitp/GameProgramming/ |
Última revisión de 09:51 27 sep 2011
Contenido
Videojuegos y Python
Pygame (doc oficial)
- http://www.pygame.org/docs/
- http://www.pygame.org/docs/ref/examples.html
- Traducción: http://www.losersjuegos.com.ar/traducciones/pygame
Pygame: tutoriales
En español
- Chuleta de trozos de código
- http://www.losersjuegos.com.ar/referencia
- http://razonartificial.com/programar-videojuegos/
- http://pythonmania.wordpress.com/2010/03/23/tutorial-pygame-introduccion/
En inglés
- http://thepythongamebook.com/en:part2:pygame:step008
- http://inventwithpython.com/chapter17.html y siguientes
- http://devmag.org.za/2009/08/15/starting-small-python-and-pygame/
- Recopilación de tutoriales: http://inventwithpython.com/blog/2010/09/01/the-top-10-pygame-tutorials/
Tutoriales avanzados
- Sprites Tutorial: http://www.sacredchao.net/~piman/writing/sprite-tutorial.shtml
- http://eli.thegreenplace.net/category/programming/python/pygame-tutorial/
- Razón artificial: tutoriales de tiles http://razonartificial.com/
Cursos que usan pygame
- http://cs.simpson.edu/?q=python_pygame_examples
- Curso de Fernando Salamero: http://videojuegos.comyr.com/ y presentaciones
- Introducción al Diseño y Programación de Videojuegos: http://www.ciroduran.com/disenajuegos
- http://www.alexkuhl.org/teaching/tip/summer/
- http://www.helenemartin.com/2009-06-teaching-games-with-pygame/
Pygame en Android
Enseñar a programar con pygame
- http://cs.simpson.edu/?q=python_pygame_examples
- tech.canterburyschool.org/pycon/teaching_pygame.pdf
Otros proyectos que usan pygame
- http://www.pilas-engine.com.ar/ Pilas es un motor para hacer videojuegos de manera sencilla.
- gasp:
Enseñar a programar con videojuegos
- Introduction to Programming Through Game Development Using Microsoft XNA Game Studio
- Programming with C# and XNA 0.5: Jump Start
- http://scratch.mit.edu/
- http://alice.org
Pygame en el OLPC (Actividades educativas con Pygame)
- http://wiki.laptop.org/go/Pygame
- http://wiki.laptop.org/go/Game_development_HOWTO
- http://wiki.laptop.org/go/Game_templates