.NET news » Search results

Search results for query "game" (31):

Windows Phone Crosswords

Learn how to create a Windows Phone crosswords game taking advantage of online internet resources
2012-07-02 21:58:00   Source: Windows Phone Crosswords   Tags: Internet

Invasion Game in XNA for Windows Phone 7

This is a port of Invasion (originally posted on CodeProject by Mauricio Ritter) to Windows Phone 7 (with some enhancements).
2011-12-11 08:17:00   Source: Invasion Game in XNA for Windows...   Tags: Mobile

Windows Phone: Transforming an Android App into a Windows Phone App

Go behind the curtain with Stan Chatman to see how he transformed his popular Hollywood Empire game app from an Android version to the Windows Phone platform.
2012-04-01 18:00:00   Source: Windows Phone: Transforming an Android App into a Windows...   Tags: Mobile

Windows Phone 7 Development: Sudoku for Windows Phone 7

Get started with Windows Phone 7 development with this Silverlight-based game tutorial that demonstrates key concepts such as the Model-View-ViewModel design pattern, serialization, user storage and multiple orientations.
2010-12-02 18:00:00   Source: Windows Phone 7 Development: Sudoku for Windows Phone 7   Tags: Silverlight

Windows Phone SDK 7.1: Building a 'Mango' App

This article walks you through creating an application that uses three of the big new Windows Phone 7.1 features: local databases, live tiles and Silverlight/XNA integration. The theme of the application is mangoes—with mango recipes, mango cocktails and a mango shooter game.
2011-10-25 19:00:00   Source: Windows Phone SDK 7.1: Building a 'Mango' App   Tags: Database

Best Practices in Game Design for the Ultra-Mobile PC

The Ultra-Mobile PC (UMPC) expands the market for PC games that run on Microsoft Windows XP, as long as developers consider certain design requirements to ensure a good user experience. In most cases, a single version of games can span both the UMPC and traditional PC platforms.
2007-03-29 19:00:00   Source: Best Practices in Game Design for...   Tags: Mobile

A "little snake" leads us through the most important features of the Windows Phone 7

Analyzing the Snake game, we'll study an application for the new Windows Phone 7 platform, focusing on localization, Inversion of Control, navigation, transition effects, triggers, Isolated Storage, audio and we'll also use Blend to create a rounded glowing button, and other things...
2011-01-29 13:08:00   Source: A "little snake" leads us through the most...   Tags: Multimedia

Best Square Root Method (Precision VS Speed)

I enjoy Game Programming with Directx and I noticed that the most called method through out most of my games is the standard sqrt method in the Math.h and this made me search for faster functions than the standard sqrt. And after some searching I found lots of functions that were much much faster but it's always a compromise between speed and precision. The main purpose of this article is to help people choose the best square-root method that suits their program.
2010-06-24 04:35:00   Source: Best Square Root Method (Precision VS Speed)   Tags: Algorithms Performance

The Baker’s Dozen Doubleheader: 26 New Features in SQL Server 2012 (Part 1 of 2)

When I was a kid, I loved baseball. I lived it 24/7. In the summertime, happiness meant a pickup game during the day and a Phillies doubleheader at night. I’m still a kid at heart and I still love baseball - and I also love SQL Server. And right now, happiness means seeing all the cool new features in SQL Server 2012. There are so many of them that I can’t list them in a single article. So, I’m penning a two-part Baker’s Dozen. The first part of this “twin-bill” (yes, expect a few baseball analogies!) will be 13 new T-SQL and database engine features in SQL Server 2012. The “night-cap” in the next issue will be 13 new features in SQL Server Integration Services and the new Business Intelligence Semantic Model.

Updating My Online Boggle Solver Using jQuery Templates and WCF

With WebForms, each ASP.NET page's rendered output includes a <form> element that performs a postback to the same page whenever a Button control within the form is clicked, or whenever the user modifies a control whose AutoPostBack property is set to True. This model simplifies web page development, but carries with it some costs - namely, the large amount of data exchanged between the client and the server during a postback. On postback the browser sends the values of all of its form fields (including hidden ones, like view state, which may be quite large) to the server; the server then sends back the entire contents of the web page. While there are some scenarios where this amount of information needs to be exchanged, in many cases the user has performed some action that requires far less information to be exchanged. With a little bit of forethought and code we can have the browser and server exchange much less data, which leads to more responsive web pages and an improved user experience.

Over the past several weeks I've been writing an article series on accessing server-side data from client script. Rather than rely solely on forms and postbacks, many websites use JavaScript code to asynchronously communicate with the server in response to the page loading or some other user action. The server, upon receiving the JavaScript-initiated request, returns just the data needed by the browser, which the browser then seamlessly integrates into the web page. There are a variety of technologies and techniques that can be employed to provide both the needed server- and client-side functionality. Last week's article, Using WCF Services with jQuery and the ASP.NET Ajax Library, explored using the Windows Communication Foundation, or WCF, to serve data from the web server and showed how to consume such a service using both the ASP.NET Ajax Library and jQuery.

In a previous 4Guys article, Creating an Online Boggle Solver, I built an application to find all solutions in a game of Boggle. (Boggle is a word game trademarked by Parker Brothers and Hasbro that involves several players trying to find as many words as they can in a 4x4 grid of letters.) This article takes the lessons learned in Using WCF Services with jQuery and the ASP.NET Ajax Library and uses them to update the user interface for my online Boggle solver, replacing the existing WebForms-based user interface with a more modern and responsive interface. I also used jQuery Templates, a JavaScript-based templating library that is useful for displaying the results from a server-side service.

2010-11-23 18:00:00   Source: Updating My Online Boggle Solver Using jQuery Templates...   Tags: Other