Our website is currently undergoing technical upgrades to serve you better. We’ll be back online shortly.
1%
C# and Game Programming: A Beginner's Guide

C# and Game Programming: A Beginner's Guide

          
5
4
3
2
1

International Edition


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Quantity:
Add to Wishlist

About the Book

The second edition of C# and Game Programming offers the same practical, hands-on approach as the first edition to learning the C# language through classic arcade game applications. Complete source code for games like Battle Bit, Asteroid Miner, and Battle Tennis, included on the CD-ROM, demonstrates programming strategies and complements the comprehensive treatment of C# in the text. From the basics of adding graphics and sound to games, to advanced concepts such as the .Net framework and object-oriented programming, this book provides the foundations for a beginner to become a full-fledged programmer. New in this edition: - Supports DirectX 9.0 - Revised programs and examples - Improved frame rate for game examples

Table of Contents:
Preface, PART ONE: Programming Basics, Chapter One: C# from the Beginning, An Overview of the C# Language, A Little History on the Cs, What is the Net Framework?, Managed Code and Assemblies, Algorithms, The Net Compiler, Compiling and Executing, Comments, Screen Output, The Newline Character, The WriteLine Command, The Semicolon, Whitespaces, Preprocessor Directives, Indenting, Naming Variables, Declaring Variables and the Integer Data Types, The Data Types float and double, The Data Type decimal, The Data Types character and string, Keywords sizeof and unsafe, Enabling unsafe mode in C#, The Data Type void, Assignment Statements, Type Compatibility: Implicit Conversions, Formatting Strings, Arithmetic, Keyboard Input, Uninitialized Variables, Access Modifiers: constant, Readonly, and volatile, Incrementing and Decrementing Operators, Type Safety versus Metonym Data Types, Keyword Defaults, Using, System, and Namespace, Hungarian Notation, Things to Remember, Troubleshooting, Questions, Chapter Two: Branches, Loops, and Functions, The if Statement, The else Statement, The else-if Statement, Program Walkthrough, Compound if Statements, and, or, and not, Nested if Statements, Mathematical Abbreviations, The while Loop, Battle Bit, The do-while Loop, The for Loop, The switch Statement, Converting from C++ to C#, Boolean Expressions, Short Circuit Evaluation, The Conditional Operator, Predefined Functions, Type Casting: Explicit Conversions, References, Values, and the Boxing Technique, Introduction to User-Defined Functions, Writing Our First User-Defined Function, Variable Scope, Functions that Return Values, Passing Variables: Calls-By-Value, Writing Functions as Black Boxes, Passing Variables: Calls-By-Reference, The Keyword out, An Introduction to Polymorphism, Introducing Recursion, Inline Functions, Troubleshooting, Things to Remember, Questions, PART TWO: Game Programming Basics, Chapter Three: Introducing DirectX, Writing Games, Game 1—Paddle Tennis, Brainstorming, Drawing Characters, Plotting Motions, Writing an Algorithm, Displaying Graphics Using Native C++, Displaying Graphics Using C#, Displaying Graphics Using DirectDraw, Introducing Object-Oriented Programming, Adding Files to Our Projects, Programming a Character, Directlnput: the Keyboard, Erasing Residual Images, Collision Detection: The Players’ Boundaries, Collision Detection: The Ball in Motion, Collision Detection: Deflecting the Ball, A Few Minor Details: Scores, Speed Settings, and Additional Graphics, Adding Colors, Adding Sounds Using Windows Multimedia, Adding Sounds Using DirectSound, Adding in the Mouse, Directlnput: The Mouse, Directlnput: The Joystick, Introducing Menus, Introduction to Artificial Intelligence, Paddle Tennis: Putting It All Together, Bonus Games, Game 2—Space Fighters, Brainstorming, Selecting Characters & Plotting Motions, Writing the Algorithm, Animating Characters: Animating Spaceships, Animating Characters: Projectiles and Explosions, Adding Directlnput: The Keyboard and Joystick, OnPaint, Defining Hyperspace, Boundaries & Projectile Limits, Drawing with DirectDraw, Artificial Intelligence: Evasion, Including Obstacles: The Sun, Gaining Momentum, Including More Obstacles: Asteroids as Extra Credit, Menus, Space Fighters: Putting It All Together, Game 3—Asteroid Miner, Brainstorming, Asteroid Miner: Putting it All Together, Troubleshooting, Things to Remember, Questions, Chapter Four: Arrays, Pointers and Strings, Arrays, Declaring and Referencing Arrays, Assigning Values to Arrays, Passing Arrays to Functions, Multidimensional Arrays, Three-Dimensional Arrays, Searching Arrays, Dynamic Arrays in C#, The foreach loop, Enumerating Constant Integers, Pointers, Enabling unsafe Mode, Pointer Variables, Call-By-Reference Values with Pointer Arguments, Pointer Arithmetic, String and Address Arithmetic, The void Pointer, Finding the Mean, Median, Mode, and Range, Pointers as Arrays: The Keyword Stackalloc, Double Asterisk Pointers, Functions Returning Pointers, Storage Class Specifiers: extern and static, Manipulating String Data, Converting and Safeguarding Data, From Strings to Streams: System.IO, Exampling Object Types, The Keywords checked and unchecked, The goto Statement, Game 4—Battle Wave, Brainstorming, Brainstorming, Drawing Characters and Defining Motions, Drawing Characters, Alternative Rendered Designs, Animating Characters: Displaying Characters, Animating Our Characters: Patterns of Movement, Defining Character Limitation, Keyboard Controls, Force Feedback Controls, Artificial Intelligence, Resetting Levels, Saving and Retrieving Data, Expanding Our Arsenal, Brainstorming, Battle Wave: The Heart of the Game, Game 5—Battle Tennis, Adding Graphics, Input Devices: Keyboard, Joystick, and Mouse, The Properties of Sound, Three-Dimensional Sound, Using Sound Effects, Changing Levels, Completing the Game, Troubleshooting, Things to Remember, Questions, Chapter Five: Object-Oriented Design, Structures, Declaring and Assigning Fields, Multiple Structures, Complex Structures, Structures as Function Arguments: Calls-by-Value, Structures as Function Arguments: Calls-by-Reference, Passing Entire Structures, Storing and Retrieving Data, Introducing Classes, Replacing Structures with Classes, private and protected Fields, The Internal Access Modifier, Arrays as Member Fields, Overloading Member Functions, private and protected Member Functions, Constructors, Overloading Constructors, Assigning Instances, Reading and Writing to Private Members, The Keyword this, Destructors, Introducing Operator Overloading, Overloading Comparison Operators, Nesting Overloaded Operators, Overloading Unary Operators, Introducing Inheritance, Inheritance versus Composition, Inheriting Constructors and Destructors, private versus protected Inheritance, Using Multiply Linked Single-Inheritance, Overriding and Virtual Methods, Abstract, The Keyword base, Exception Handling, Nested try Blocks, The Keyword throw, User-Defined Exception Classes, Nested Exceptions, The Binary Operator as, Delegates, Preprocessor Directives, The external Modifier, The explicit Operator, The implicit Operator, Fixed Pointers, The get and set Accessors, Linking Interfaces, The is Operator, The Keyword lock, The Keyword params, The Keyword sealed, The Keyword stackalloc, Metafiles Defined, Building Game Classes, Game Classes—Animatedlmage.cs, Animation, Displaying, Adding Substance to Characters, Creating Infinite Space, Other Types of Deflection, Inheriting from Animatedlmage.cs—Player.cs, Inheriting from Player.cs—PlayerlmageArray.cs, Inheriting from PlayerlmageArray.cs-MultilmagePlayer.cs, Inheriting from PlayerlmageArray.cs—Shapes.cs, Inheriting from Shapes.cs—Patterns.cs, GameState.cs, GameTimer.cs, TimedEvent.cs, Utils.cs, Wall.cs, Introducing Direct3D, Brainstorming, Game 6—Ground Assault, Brainstorming, Graphics, Game 7—Rat Racer, Adding Animation, Brainstorming, Troubleshooting, Assignments, Conclusion, Questions, Appendix A: Keywords/Reserved Identifiers, Appendix B: Reserved Identifiers Defined, Appendix C: Accessors, Appendix D: Order of Precedence, Appendix E: Displaying Message Boxes, Appendix F: Graphics, Appendix G: Colors, Appendix H: Algorithms, Appendix I: Adding DirectX References, Index


Best Sellers


Product Details
  • ISBN-13: 9781138428102
  • Publisher: Taylor & Francis Ltd
  • Publisher Imprint: CRC Press
  • Edition: New edition
  • Language: English
  • Returnable: N
  • Sub Title: A Beginner's Guide
  • Width: 191 mm
  • ISBN-10: 1138428108
  • Publisher Date: 07 Jun 2019
  • Binding: Hardback
  • Height: 235 mm
  • No of Pages: 532
  • Spine Width: 33 mm
  • Weight: 1140 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
C# and Game Programming: A Beginner's Guide
Taylor & Francis Ltd -
C# and Game Programming: A Beginner's Guide
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

C# and Game Programming: A Beginner's Guide

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA