This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainActivity extends Activity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
} | |
@Override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(NSString *) getInput | |
{ | |
NSFileHandle *input = [NSFileHandle fileHandleWithStandardInput]; | |
NSData *inputData = [input availableData]; | |
NSString *inputString = [[NSString alloc] initWithData: inputData encoding:NSUTF8StringEncoding]; | |
inputString = [inputString stringByTrimmingCharactersInSet: [NSCharacterSet newlineCharacterSet]]; | |
return inputString; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Constant.h | |
// Chess | |
// | |
// Created by Denis Peyrusaubes on 20/09/2015. | |
// Copyright © 2015 Retengr. All rights reserved. | |
// | |
#ifndef Constant_h | |
#define Constant_h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Chess board ready: | |
R K B Q K B K R | |
P P P P P P P P | |
- - - - - - - - | |
- - - - - - - - | |
- - - - - - - - | |
- - - - - - - - | |
P P P P P P P P | |
R K B Q K B K R |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
Piece* pA2 = [[Piece alloc] initWithColor:ChessColorWhite andPiece:ChessPiecePawn] ; | |
Square* A2 = [Square squareWithPiece:pA2 andOffset:8]; | |
// ... | |
self.squares = @[A1,B1,C1,D1,E1,F1,G1,H1,A2,B2,C2,D2,E2,F2,G2,H2,A3,B3,C3,D3,E3,F3,G3,H3,A4,B4,C4,D4,E4,F4,G4,H4,A5,B5,C5,D5,E5,F5,G5,H5,A6,B6,C6,D6,E6,F6,G6,H6,A7,B7,C7,D7,E7,F7,G7,H7,A8,B8,C8,D8,E8,F8,G8,H8]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
self.datas = @[@"Emma",@"Thomas",@"Marc",@"Marie",@"Denis",@"Lucie",@"Claire",@"Florence",@"Delphine"]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"myCell"]; | |
NSString* label = [NSString stringWithFormat:@"Section: %d",indexPath.section]; | |
cell.textLabel.text = label; | |
NSString* detailLabel = [NSString stringWithFormat:@"Row: %d",indexPath.row]; | |
cell.detailTextLabel.text = detailLabel; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIColor* darkSquare = [[UIColor alloc] initWithRed:202.0/255.0 green:134.0/255.0 blue:68.0/255.0 alpha:1.0]; | |
UIColor* lightSquare = [[UIColor alloc] initWithRed:255.0/255.0 green:206.0/255.0 blue:158.0/255.0 alpha:1.0]; | |
int y =(int) (self.offset/8) +1; | |
if ( (self.offset + y ) % 2 == 0) { | |
self.backgroundColor = lightSquare; | |
} else { | |
self.backgroundColor = darkSquare; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(void) updatePiece { | |
UIImage* image = self.square.piece.boardImage; | |
[self setImage:image forState:UIControlStateNormal]; | |
[self setImage:image forState:UIControlStateSelected]; | |
self.imageView.image = image; | |
} |
OlderNewer