hedgewars/uLandTexture.pas
author unc0rr
Fri, 01 May 2009 09:01:44 +0000
changeset 2021 a591afb43768
parent 1906 644f93d8f148
child 2152 a2811690da1b
permissions -rw-r--r--
Some changes in try to fix issue when you enter room with painted map, but frontend shows generated one (most probably bug is triggered by template filters) Untested.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     1
(*
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com>
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     4
 *
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     8
 *
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    13
 *
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    17
 *)
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    18
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    19
unit uLandTexture;
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    20
interface
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    21
uses SDLh;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    22
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    23
procedure UpdateLandTexture(X, Width, Y, Height: LongInt);
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    24
procedure DrawLand(dX, dY: LongInt);
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    25
procedure FreeLand;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    26
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    27
implementation
1906
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1859
diff changeset
    28
uses uMisc, uLand, uStore, 
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1859
diff changeset
    29
{$IFDEF IPHONE}
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1859
diff changeset
    30
	gles11,
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1859
diff changeset
    31
{$ELSE}
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1859
diff changeset
    32
	GL,
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1859
diff changeset
    33
{$ENDIF}
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1859
diff changeset
    34
	uConsts;
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    35
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    36
const TEXSIZE = 256;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    37
	LANDTEXARW = LAND_WIDTH div TEXSIZE;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    38
	LANDTEXARH = LAND_HEIGHT div TEXSIZE;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    39
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    40
var
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    41
	LandTextures: array[0..LANDTEXARW - 1, 0..LANDTEXARH - 1] of
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    42
			record
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    43
			shouldUpdate: boolean;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    44
			tex: PTexture;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    45
			end;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    46
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    47
	tmpPixels: array [0..TEXSIZE - 1, 0..TEXSIZE - 1] of LongWord;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    48
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    49
function Pixels(x, y: Longword): Pointer;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    50
var ty: Longword;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    51
begin
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    52
for ty:= 0 to TEXSIZE - 1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    53
	Move(LandPixels[y * TEXSIZE + ty, x * TEXSIZE], tmpPixels[ty, 0], sizeof(Longword) * TEXSIZE);
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    54
	
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    55
Pixels:= @tmpPixels
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    56
end;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    57
1859
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    58
function Pixels2(x, y: Longword): Pointer;
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    59
var tx, ty: Longword;
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    60
begin
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    61
for ty:= 0 to TEXSIZE - 1 do
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    62
	for tx:= 0 to TEXSIZE - 1 do
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    63
		tmpPixels[ty, tx]:= Land[y * TEXSIZE + ty, x * TEXSIZE + tx] or $FF000000;
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    64
	
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    65
Pixels2:= @tmpPixels
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    66
end;
e071284b118e Pixels2 proc, which uses Land array when updating textures
unc0rr
parents: 1852
diff changeset
    67
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    68
procedure UpdateLandTexture(X, Width, Y, Height: LongInt);
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    69
var tx, ty: Longword;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    70
begin
1852
fa04a27005c3 Fix crash when explosion is outside of the map (check was lost while refactoring)
unc0rr
parents: 1808
diff changeset
    71
if (Width <= 0) or (Height <= 0) then exit;
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    72
TryDo((X >= 0) and (X < LAND_WIDTH), 'UpdateLandTexture: wrong X parameter', true);
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    73
TryDo(X + Width <= LAND_WIDTH, 'UpdateLandTexture: wrong Width parameter', true);
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    74
TryDo((Y >= 0) and (Y < LAND_HEIGHT), 'UpdateLandTexture: wrong Y parameter', true);
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    75
TryDo(Y + Height <= LAND_HEIGHT, 'UpdateLandTexture: wrong Height parameter', true);
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    76
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    77
for ty:= Y div TEXSIZE to (Y + Height - 1) div TEXSIZE do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    78
	for tx:= X div TEXSIZE to (X + Width - 1) div TEXSIZE do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    79
		LandTextures[tx, ty].shouldUpdate:= true
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    80
end;
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    81
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    82
procedure RealLandTexUpdate;
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    83
var x, y: LongWord;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    84
begin
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    85
if LandTextures[0, 0].tex = nil then
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    86
	for x:= 0 to LANDTEXARW -1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    87
		for y:= 0 to LANDTEXARH - 1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    88
			with LandTextures[x, y] do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    89
				tex:= NewTexture(TEXSIZE, TEXSIZE, Pixels(x, y))
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
    90
else
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    91
	for x:= 0 to LANDTEXARW -1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    92
		for y:= 0 to LANDTEXARH - 1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    93
			with LandTextures[x, y] do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    94
				if shouldUpdate then
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    95
					begin
1808
2fc248766d57 Fix a bug with updating
unc0rr
parents: 1807
diff changeset
    96
					shouldUpdate:= false;
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    97
					glBindTexture(GL_TEXTURE_2D, tex^.id);
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    98
					glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, TEXSIZE, TEXSIZE, GL_RGBA, GL_UNSIGNED_BYTE, Pixels(x, y));
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
    99
					end
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
   100
end;
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
   101
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   102
procedure DrawLand(dX, dY: LongInt);
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   103
var x, y: LongInt;
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
   104
begin
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
   105
RealLandTexUpdate;
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   106
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   107
for x:= 0 to LANDTEXARW -1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   108
	for y:= 0 to LANDTEXARH - 1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   109
		with LandTextures[x, y] do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   110
			DrawTexture(dX + x * TEXSIZE, dY + y * TEXSIZE, tex)
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   111
end;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   112
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   113
procedure FreeLand;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   114
var x, y: LongInt;
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   115
begin
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   116
for x:= 0 to LANDTEXARW -1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   117
	for y:= 0 to LANDTEXARH - 1 do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   118
		with LandTextures[x, y] do
795f97007833 Split land texture into small ones:
unc0rr
parents: 1806
diff changeset
   119
			FreeTexture(tex)
1806
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
   120
end;
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
   121
3c4f0886c123 More reorganization
unc0rr
parents:
diff changeset
   122
end.