Cargando…

SFML game development by example : create and develop exciting games from start to finish using SFML /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Pupius, Raimondas (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, 2015.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_ocn935257250
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160119s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCF  |d N$T  |d IDEBK  |d VT2  |d YDXCP  |d COO  |d EBLCP  |d DEBBG  |d IDB  |d OCLCQ  |d MERUC  |d OCLCQ  |d CEF  |d NLE  |d UKMGB  |d OCLCQ  |d UAB  |d UKAHL  |d NLW  |d OCLCQ  |d UK7LJ  |d OCLCO  |d OCLCQ  |d OCL 
016 7 |a 018010458  |2 Uk 
019 |a 933713648  |a 934048126  |a 951974802 
020 |a 9781785283000  |q (electronic bk.) 
020 |a 1785283006  |q (electronic bk.) 
020 |a 1785287346 
020 |a 9781785287343 
020 |z 9781785287343 
024 3 |a 9781785287343 
029 1 |a AU@  |b 000057034328 
029 1 |a AU@  |b 000057415143 
029 1 |a AU@  |b 000066526578 
029 1 |a AU@  |b 000067108019 
029 1 |a CHNEW  |b 000884587 
029 1 |a CHVBK  |b 374432872 
029 1 |a DEBBG  |b BV043893514 
029 1 |a DEBBG  |b BV043968668 
029 1 |a DEBSZ  |b 485791757 
029 1 |a GBVCP  |b 882751352 
029 1 |a UKMGB  |b 018010458 
035 |a (OCoLC)935257250  |z (OCoLC)933713648  |z (OCoLC)934048126  |z (OCoLC)951974802 
037 |a CL0500000703  |b Safari Books Online 
050 4 |a QA76.76.C672 
072 7 |a COM  |x 012040  |2 bisacsh 
072 7 |a COM  |x 051070  |2 bisacsh 
082 0 4 |a 794.81526  |2 23 
049 |a UAMI 
100 1 |a Pupius, Raimondas,  |e author. 
245 1 0 |a SFML game development by example :  |b create and develop exciting games from start to finish using SFML /  |c Raimondas Pupius. 
264 1 |a Birmingham :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed May 3, 2016). 
500 |a Includes index. 
520 8 |a Annotation  |b Create and develop exciting games from start to finish using SFMLAbout This Book Familiarize yourself with the SFML library and explore additional game development techniques Craft, shape, and improve your games with SFML and common game design elements A practical guide that will teach you how to use utilize the SFML library to build your own, fully functional applicationsWho This Book Is ForThis book is intended for game development enthusiasts with at least decent knowledge of the C++ programming language and an optional background in game design. What You Will Learn Create and open a window by using SFML Utilize, manage, and apply all of the features and properties of the SFML library Employ some basic game development techniques to make your game tick Build your own code base to make your game more robust and flexible Apply common game development and programming patterns to solve design problems Handle your visual and auditory resources properly Construct a robust system for user input and interfacing Develop and provide networking capabilities to your gameIn DetailSimple and Fast Multimedia Library (SFML) is a simple interface comprising five modules, namely, the audio, graphics, network, system, and window modules, which help to develop cross-platform media applications. By utilizing the SFML library, you are provided with the ability to craft games quickly and easily, without going through an extensive learning curve. This effectively serves as a confidence booster, as well as a way to delve into the game development process itself, before having to worry about more advanced topics such as rendering pipelines or shaders. With just an investment of moderate C++ knowledge, this book will guide you all the way through the journey of game development. The book starts by building a clone of the classical snake game where you will learn how to open a window and render a basic sprite, write well-structured code to implement the design of the game, and use the AABB bounding box collision concept. The next game is a simple platformer with enemies, obstacles and a few different stages. Here, we will be creating states that will provide custom application flow and explore the most common yet often overlooked design patterns used in game development. Last but not the least, we will create a small RPG game where we will be using common game design patterns, multiple GUI. elements, advanced graphical features, and sounds and music features. We will also be implementing networking features that will allow other players to join and play together. By the end of the book, you will be an expert in using the SFML library to its full potential. Style and approach An elaborate take on the game development process in a way that compliments the reader's existing knowledge, this book provides plenty of examples and is kind to the uninitiated. Each chapter builds upon the knowledge gained from the previous one and offers clarifications on common issues while still remaining within the scope of its own subject and retaining clarity. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: It's Alive! It's Alive! -- Setup and First Program; What is SFML?; SFML licensing; Resources and installation; Setting up a Microsoft Visual Studio project; Opening a window; Basics of SFML drawing; Drawing images in SFML; What is a sprite?; Common mistakes; Summary; Chapter 2: Give It Some Structure -- Building the Game Framework; Graduating to ravioli; Implementing the window class; Building the game class; Putting our code to work; Hardware and execution time. 
505 8 |a Controlling the frame-rateUsing the SFML clock; Fixed time-step; Common mistakes; Summary; Chapter 3: Get Your Hands Dirty -- What You Need to Know; Introducing snake; Game design decisions; Implementing the snake structure; The snake class; The World class; Time to integrate; Hunting bugs; Fixing bugs; Going the extra mile; Common mistakes; Summary; Chapter 4: Grab That Joystick -- Input and Event Management; Retrieving peripheral input; Checking for mouse input; Plug in your controller; Understanding the sf::Event; Introducing the event manager; Standard function wrapper. 
505 8 |a Building the event managerImplementing the event manager; Integrating the EventManager class; Moving a sprite revisited; Principles of use; Common mistakes; Summary; Chapter 5: Can I Pause This? -- Application States; What is a state?; The most simplistic approach; Introducing the state pattern; Defining common types; The state manager class; Defining the state manager class; Implementing the state manager; Improving the Event Manager class; Incorporating the state manager; Creating the intro state; Implementing the intro state; The main menu state; A sample game state; The means to pause. 
505 8 |a Common mistakesSummary; Chapter 6: Set It in Motion! -- Animating and Moving around Your World; Use of copyrighted resources; Finding and using the current directory; Using the SFML views; Preparing application states for views; Automated resource management; Designing a resource manager; Implementing the texture manager; Introducing sprite sheets; Implementing a sprite sheet class; The base animation class; Implementing the base animation class; Directional animation; Loading the sprite sheet files; Summary; Chapter 7: Rediscovering Fire -- Common Game Design Elements; The game map. 
505 8 |a What is a tile?Building the game world; The flyweight pattern; Designing the map class; The parent of all world objects; Creating the base entity class; Collisions and bounding boxes; Implementing the base entity class; Entity-on-tile collisions; Entity storage and management; Implementing the entity manager; Using entities to build characters; Implementing the character class; Creating the player; Adding enemies; Loading entities from the map file; Final editions to our code base; Changes to the shared context; Putting all the pieces together; Summary. 
505 8 |a Chapter 8: The More You Know -- Common Game Programming Patterns. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Computer games  |x Programming. 
650 0 |a Multimedia systems  |x Computer programs. 
650 0 |a C++ (Computer program language) 
650 6 |a Jeux d'ordinateur  |x Programmation. 
650 6 |a Multimédia  |x Logiciels. 
650 6 |a C++ (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming  |x Games.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x C++  |2 bisacsh 
650 7 |a C++ (Computer program language)  |2 fast  |0 (OCoLC)fst00843286 
650 7 |a Video games  |x Programming.  |2 fast  |0 (OCoLC)fst00872114 
650 7 |a Multimedia systems  |x Computer programs.  |2 fast  |0 (OCoLC)fst01028922 
776 0 8 |i Print version:  |a Pupius, Raimondas.  |t SFML Game Development By Example.  |d Birmingham : Packt Publishing, ©2015 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785287343/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH29891093 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4520765 
938 |a EBSCOhost  |b EBSC  |n 1134527 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33469501 
938 |a YBP Library Services  |b YANK  |n 12772120 
994 |a 92  |b IZTAP