Archive

Archive for July, 2010

Article comparing 4 frameworks for of building a simple mobile app

July 27, 2010 2 comments

Interesting article on comparing four mobile(ish) frameworks for building the same simple app –  this doesn’t include iPhone – maybe, just maybe I’ll attack that when I start my coding iPhone again.

http://blogs.msdn.com/b/jgalasyn/archive/2010/07/07/modern-programming-a-tale-of-four-frameworks.aspx

Dom

Categories: .Net

Keyboard shortcuts posters VS2010

July 26, 2010 Leave a comment

Come on I know everyone is going to be excited about this – its the poster of the new VS2010 shortcuts – what every .NET developer needs and loves

http://blogs.msdn.com/b/lisa/archive/2010/07/25/vs-2010-keyboard-shortcuts-for-c-vb-c-f-now-available-in-letter-8-5x11in-and-a4-210-215-297mm-print-ready-sizes.aspx

Dom

Categories: .Net

Another oldie but a goodie (DNR)

July 25, 2010 Leave a comment

For those who don’t know about a great old resource (excellent podcasts) - still kicking

www.dotnetrocks.com

Dom

Categories: .Net

CodeCampOZ 2010 Agenda Released

July 20, 2010 Leave a comment

It might change closer to the date in November but looks like some good speakers already…

http://codecampoz.com/agenda/

Dom

Australian Local Developer Groups

July 13, 2010 1 comment

The following links contain a list of developer groups in each of the following Australian cities – note they are not just perl groups!!!

http://perl.net.au/wiki/Melbourne

http://perl.net.au/wiki/Sydney

http://perl.net.au/wiki/Canberra

http://perl.net.au/wiki/Brisbane

Dom

Get the webmatrix available for download now

July 13, 2010 2 comments

Download the first version of Webmatrix (including the new embedded db)

http://weblogs.asp.net/scottgu/archive/2010/07/06/introducing-webmatrix.aspx

Dom

Categories: .Net Tags:

Norway Developer Conference (Free Videos)

July 13, 2010 Leave a comment

Some pretty cool looking .Net and other videos from the NDC

http://streaming.ndc2010.no/tcs/#page:conferenceList&status:recorded&pageNumber:1

Dom

New embedded db support with asp.net

July 3, 2010 1 comment

This is an interesting development from Microsoft – they now provide a simple embedded database solution for web apps. This allows a database to be included in with the app, without having to have a specific database external to the app (ie. no more db deployment issues).

http://weblogs.asp.net/scottgu/archive/2010/06/30/new-embedded-database-support-with-asp-net.aspx

Dom

Categories: .Net Tags:

CannonAttack iPhone v1.0 – An iPhoneTutorial

July 1, 2010 Leave a comment

Which way to the battle? –  The Introduction

This tutorial is a short introduction to iPhone development. Like most of my tutorials it’s based on a game.

This is the second in a series of tutorials. The first tutorial was a TDD tutorial in C# 4.0.

This version of the tutorial is similar in functionality to the C# version with obvious changes to the UI as needed. I am not using a TDD approach, mainly because I am not really up to TDD on the iPhone yet.

By completing this tutorial you will:

  • Get a taste of the iPhone development experience; and
  • Design a simple UI in Interface Builder.

CannonAttack iPhone is a simple game where a player enters an angle and velocity of a cannonball to hit a target at a given distance. The game uses a basic formula for calculating the trajectory of the cannonball and the player keeps taking turns at shooting at the target until it has been hit

Where are the cannonballs – What you need:

I built this with the following tools:

  • iPhone SDK (3.1); and
  • MAC OS X 10.6 Snow Leopard

Whilst this is a pretty basic introduction to iPhone development, it assumes a very basic knowledge of iPhone development and while it doesn’t spell out every single step, you should have more than enough detail to complete it.

The battleplan – The CannonAttack Requirements/Specs:

The following is a combination of Requirements and Specifications that will give us some guide in terms of the application we are trying to build:

  • iPhone Application;
  • Allow player to set Angle and Speed of the Cannon Ball to Shoot at  a Target;
  • Target Distance is simply the distance of the Cannon to Target, and is created randomly by default but can be overridden;
  • Max distance for target is 20000 meters;
  • Base the algorithm for the calculation of the cannons trajectory upon the following code (distance and height is meters and velocity is meters per second):

distance = velocity * Math.Cos(angleInRadians) * time;

height = (velocity * Math.Sin(angleInRadians) * time) – (GRAVITY * Math.Pow(time, 2)) / 2;

  • A hit occurs if the cannon is within 50m of the target;
  • Display number of shots for a hit

Building the Cannon – Creating the Cannon UI

  • Start XCode and Create a View based application – call it CannonAttack
  • Now add a class to the Project and call it Cannon.m (generate the .h file as well).
  • Double click on the file CannonAttackViewController.xib:  (this will open up Interface Builder).
  • Create the following UI using the design tools in IB (base this on this screen):


  • Also, Add a button that covers the whole screen in the iPhone UI in Interface Builder. Click on this button and from the LAYOUT Menu select SEND TO BACK. This is important as we will use this hidden button to remove the keyboard for the textfields when we click in the background or one of the buttons.
  • Also make sure you have set the keyboard type for the textboxes to number pad.
  • You need to then go back to XCode and add the following Code to the .h file.
  • Now add the following to the .m file

#import <UIKit/UIKit.h>
@interface CannonLauncher1ViewController : UIViewController {
IBOutlet UILabel *descriptionLabel;
IBOutlet UILabel *resultLabel;
IBOutlet UITextField *speedTextField;
IBOutlet UITextField *angleTextField;
IBOutlet UILabel *shotCountLabel;
int targetDistance;
int shotCount;
}
//Properties
@property (nonatomic,retain) UILabel *descriptionLabel;
@property (nonatomic,retain) UILabel *resultLabel;
@property (nonatomic,retain) UITextField *speedTextField;
@property (nonatomic,retain) UITextField *angleTextField;
@property (nonatomic,retain) UILabel *shotCountLabel;
//Actions
-(IBAction)fireButton:(id)sender;
-(IBAction)resetButton:(id)sender;
-(IBAction)backgroundClick:(id)sender;
//Methods
-(void)hideNumberKeyboard;
-(void)resetTextBoxes;
@end

So now add the following code to the .m file

#import "CannonLauncher1ViewController.h"
#import "Cannon.h"
@implementation CannonLauncher1ViewController
@synthesize descriptionLabel;
@synthesize resultLabel;
@synthesize speedTextField;
@synthesize angleTextField;
@synthesize shotCountLabel;
- (void)viewDidLoad {
[super viewDidLoad];
[self resetTextBoxes];
}
//Button handler for the fire button
-(IBAction) fireButton:(id) sender
{
NSInteger velocity = [[speedTextField text]intValue];
NSInteger angle = [[angleTextField text]intValue];
Cannon *cannon = [[Cannon alloc]init];
cannon.targetDistance = targetDistance;
[cannon Shoot:angle Speed:velocity];
shotCount ++;
resultLabel.text = cannon.message;
shotCountLabel.text =
[NSString stringWithFormat: @"Shot Count %d", shotCount];
[self hideNumberKeyboard];
[cannon release];
}
//Button handler for the reset button
-(IBAction) resetButton:(id) sender
{
[self resetTextBoxes];
}
//Button Handler for the main backgtound button
-(IBAction)backgroundClick:(id)sender
{
[self hideNumberKeyboard];
}
//Hides the number keyboard
-(void)hideNumberKeyboard
{
[speedTextField resignFirstResponder];
[angleTextField resignFirstResponder];
}
//Reset the distance and set it as rge text of the description label
-(void)resetTextBoxes
{
targetDistance = rand() %10000;
NSString *distanceText = [[NSString alloc] initWithFormat: @"Distance %d meters (50m",targetDistance];
descriptionLabel.text = distanceText;
speedTextField.text = @"";
angleTextField.text = @"";
shotCount = 0;
[distanceText release];
}
//Built in Method I didn't change this
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
}
//Built in Method to clean up any objects
- (void)dealloc {
[descriptionLabel release];
[resultLabel release];
[speedTextField release];
[angleTextField release];
[shotCountLabel  release];
[super dealloc];
}
@end

OK so all we have to do now is implement the cannon class.

Now edit the cannon.h file and replace the code with this header code:

//
//  Cannon.h
//  CannonLauncher1
//
//  Created by Dom Millar on 16/06/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
#import <Foundation/Foundation.h>
@interface Cannon : NSObject {
@private int targetDistance;
NSString *message;
}
@property  (readwrite,assign)int targetDistance;
@property  (nonatomic,retain) NSString *message
-(IBAction) Shoot: (int) angle Speed: (int) speed;
@end

Now all we have to do is add the code for cannon.m

//
//  Cannon.m
//  CannonLauncher1
//
//  Created by Dom Millar on 16/06/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import "Cannon.h"
@implementation Cannon
@synthesize targetDistance;
@synthesize message;
-(IBAction) Shoot: (NSInteger) angle Speed: (NSInteger) velocity
{
//set up the local variables for the shoot method
float time = 0;
float height = 0;
float distance = 0;
float gravity = 9.80665;
float variation = 50;
float pi = 3.1415926536;
//Keep calculating height and distance untill height < 0
while(height >= 0)
{
float angleInRadians = ( pi / 180 ) * angle;
distance = velocity * cos(angleInRadians) * time;
height = (velocity * sin(angleInRadians)) - (gravity * pow(time,2));
time++;
}
//Complete calculation
if ((targetDistance >= distance-variation) && (targetDistance <= distance+variation))
{
//Display the hit
message = @"Hit";
}
else
{
//Display the Miss
NSString *description = [NSString stringWithFormat:@"Missed target landed at %f meters" , distance];
message = description;
//[description release];
}
}
@end

Now make sure everything builds. Go back interface builder and you need to do setup the following outlets and actions:

This shows you all the hooks we need:

File owner dialog screen shot

OK now You should be ready to run, go back to XCode and run the app and you should be able to play the game like:

You can see the Keyboard is visible here – once we click on a button or the main screen the keyboard will disappear:

Victory Condition – In summary

So that’s it – our latest version of the Cannon Attack game is complete. There are lots of changes you can make to make the game more interesting so play around with the project as much as you like.

Happy Coding – Dom.

Collection of Free Microsoft Training Kits

July 1, 2010 Leave a comment

The following blogpost has a heap of free Microsoft  training kits (lots of VS2010 stuff here):

http://blogs.msdn.com/b/acoat/archive/2010/07/01/training-kit-redux-more-developer-resources-than-you-could-shake-a-stick-at.aspx

Dom

Follow

Get every new post delivered to your Inbox.