Changes in / [1:3]


Ignore:
Location:
/trunk
Files:
2 added
7 edited

Legend:

Unmodified
Added
Removed
  • /trunk

    • Property svn:ignore set to
      Game2048
      Game2048.lps
      lib
  • TabularUnified /trunk/Game2048.lpi

    r1 r3  
    99      <ResourceType Value="res"/>
    1010      <UseXPManifest Value="True"/>
     11      <XPManifest>
     12        <DpiAware Value="True"/>
     13      </XPManifest>
    1114      <Icon Value="0"/>
    1215    </General>
     
    2730      </Item1>
    2831    </RequiredPackages>
    29     <Units Count="3">
     32    <Units Count="4">
    3033      <Unit0>
    3134        <Filename Value="Game2048.lpr"/>
     
    4346        <IsPartOfProject Value="True"/>
    4447      </Unit2>
     48      <Unit3>
     49        <Filename Value="UFormNew.pas"/>
     50        <IsPartOfProject Value="True"/>
     51        <ComponentName Value="FormNew"/>
     52        <ResourceBaseClass Value="Form"/>
     53      </Unit3>
    4554    </Units>
    4655  </ProjectOptions>
  • TabularUnified /trunk/Game2048.lpr

    r1 r3  
    88  {$ENDIF}{$ENDIF}
    99  Interfaces, // this includes the LCL widgetset
    10   Forms, UFormMain, UGame
     10  Forms, UFormMain, UGame, UFormNew
    1111  { you can add units after this };
    1212
     
    1717  Application.Initialize;
    1818  Application.CreateForm(TFormMain, FormMain);
     19  Application.CreateForm(TFormNew, FormNew);
    1920  Application.Run;
    2021end.
  • TabularUnified /trunk/UFormMain.lfm

    r1 r3  
    66  Caption = '2048 game'
    77  DesignTimePPI = 144
     8  Menu = MainMenu1
     9  OnCreate = FormCreate
     10  OnDestroy = FormDestroy
    811  OnKeyUp = FormKeyUp
    912  OnPaint = FormPaint
    1013  OnShow = FormShow
    1114  LCLVersion = '1.8.4.0'
     15  object MainMenu1: TMainMenu
     16    left = 325
     17    top = 152
     18    object MenuItemGame: TMenuItem
     19      Caption = 'Game'
     20      object MenuItem1: TMenuItem
     21        Action = AGameNew
     22      end
     23    end
     24  end
     25  object ActionList1: TActionList
     26    left = 144
     27    top = 155
     28    object AGameNew: TAction
     29      Caption = 'New...'
     30      OnExecute = AGameNewExecute
     31    end
     32  end
    1233end
  • TabularUnified /trunk/UFormMain.pas

    r1 r3  
    66
    77uses
    8   Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, UGame;
     8  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Menus,
     9  ActnList, UGame;
    910
    1011type
     
    1314
    1415  TFormMain = class(TForm)
     16    AGameNew: TAction;
     17    ActionList1: TActionList;
     18    MainMenu1: TMainMenu;
     19    MenuItem1: TMenuItem;
     20    MenuItemGame: TMenuItem;
     21    procedure AGameNewExecute(Sender: TObject);
     22    procedure FormCreate(Sender: TObject);
     23    procedure FormDestroy(Sender: TObject);
    1524    procedure FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
    1625    procedure FormPaint(Sender: TObject);
     
    2938
    3039{$R *.lfm}
     40
     41uses
     42  UFormNew;
    3143
    3244{ TFormMain }
     
    5062end;
    5163
     64procedure TFormMain.AGameNewExecute(Sender: TObject);
     65begin
     66  FormNew.Load(Game);
     67  if FormNew.ShowModal = mrOk then begin
     68    FormNew.Save(Game);
     69    Game.New;
     70  end;
     71end;
     72
     73procedure TFormMain.FormCreate(Sender: TObject);
     74begin
     75  Randomize;
     76  Game := TGame.Create;
     77  Game.Size := Point(4, 4);
     78  Game.OnChange := GameChange;
     79end;
     80
     81procedure TFormMain.FormDestroy(Sender: TObject);
     82begin
     83  Game.Free;
     84end;
     85
    5286procedure TFormMain.FormPaint(Sender: TObject);
    5387begin
     
    5791procedure TFormMain.FormShow(Sender: TObject);
    5892begin
    59   Randomize;
    60   Game := TGame.Create;
    61   Game.Size := Point(3, 3);
    62   Game.OnChange := GameChange;
    6393  Game.New;
    64 
    6594  {
    6695  Game.Cells[0, 0].Value := 1;
  • TabularUnified /trunk/UGame.pas

    r1 r3  
    3030    FRunning: Boolean;
    3131    FSize: TPoint;
     32    function GetCellColor(Value: Integer): TColor;
    3233    procedure SetSize(AValue: TPoint);
    3334    procedure GetEmptyCells(EmptyCells: TCells);
     
    4748    procedure MoveCell(SourceCell, TargetCell: TCell);
    4849    function IsValidPos(Pos: TPoint): Boolean;
     50    constructor Create;
    4951    property Size: TPoint read FSize write SetSize;
    5052    property Running: Boolean read FRunning write FRunning;
     
    204206  Canvas.Font.Height := Trunc(CellSize.Y * 0.7);
    205207  for Y := 0 to Size.Y - 1 do
    206     for X := 0 to Size.X - 1 do
    207     if Cells[Y, X].Value <> 0 then begin
    208       ValueStr := IntToStr(Cells[Y, X].Value);
    209       Canvas.TextOut(X * CellSize.X + CellSize.X div 2 -
    210         Canvas.TextWidth(ValueStr) div 2, Y * CellSize.Y, ValueStr);
     208    for X := 0 to Size.X - 1 do begin
     209      Canvas.Brush.Color := GetCellColor(Cells[Y, X].Value);
     210      Canvas.Brush.Style := bsSolid;
     211      Canvas.FillRect(Rect(X * CellSize.X, Y * CellSize.Y,
     212        (X + 1) * CellSize.X, (Y + 1) * CellSize.Y));
     213      if Cells[Y, X].Value <> 0 then begin
     214        ValueStr := IntToStr(Cells[Y, X].Value);
     215        Canvas.TextOut(X * CellSize.X + CellSize.X div 2 -
     216          Canvas.TextWidth(ValueStr) div 2, Y * CellSize.Y, ValueStr);
     217      end;
    211218    end;
    212219
     
    305312end;
    306313
     314constructor TGame.Create;
     315begin
     316end;
     317
     318function TGame.GetCellColor(Value: Integer): TColor;
     319begin
     320  case Value of
     321    0: Result := $f2f6f9;
     322    2: Result := $dae4ee;
     323    4: Result := $c8e0ed;
     324    8: Result := $79b1f2;
     325    16: Result := $6395f5;
     326    32: Result := $5f7cf6;
     327    64: Result := $3b5ef6;
     328    128: Result := $72cfed;
     329    256: Result := $61cced;
     330    512: Result := $50c8ed;
     331    1024: Result := $3fc5ed;
     332    2048: Result := $2ec2ed;
     333    else Result := $323a3c;
     334  end;
     335end;
     336
    307337end.
    308338
Note: See TracChangeset for help on using the changeset viewer.