Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
UltimateZoneBuilder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alam Ed Arias
UltimateZoneBuilder
Commits
28f01517
Commit
28f01517
authored
5 years ago
by
Magnus Norddahl
Browse files
Options
Downloads
Patches
Plain Diff
Trade some memory for speed
parent
80f815ca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/Core/VisualModes/VisualBlockMap.cs
+36
-14
36 additions, 14 deletions
Source/Core/VisualModes/VisualBlockMap.cs
with
36 additions
and
14 deletions
Source/Core/VisualModes/VisualBlockMap.cs
+
36
−
14
View file @
28f01517
...
...
@@ -35,16 +35,20 @@ namespace CodeImp.DoomBuilder.VisualModes
public
const
int
BLOCK_SIZE_SHIFT
=
7
;
public
const
int
BLOCK_SIZE
=
1
<<
BLOCK_SIZE_SHIFT
;
public
const
float
BLOCK_RADIUS
=
BLOCK_SIZE
*
Angle2D
.
SQRT2
;
#
endregion
#
region
==================
Variables
// Blocks
private
Dictionary
<
ulong
,
VisualBlockEntry
>
blockmap
;
// State
private
bool
isdisposed
;
#
endregion
#
region
==================
Variables
// Blocks
#if DICTIONARY_BLOCKMAP
private
Dictionary
<
ulong
,
VisualBlockEntry
>
blockmap
;
#else
private
VisualBlockEntry
[,]
blockmap
;
#endif
// State
private
bool
isdisposed
;
#
endregion
...
...
@@ -59,9 +63,13 @@ namespace CodeImp.DoomBuilder.VisualModes
// Constructor
internal
VisualBlockMap
()
{
#if DICTIONARY_BLOCKMAP
// Initialize
blockmap
=
new
Dictionary
<
ulong
,
VisualBlockEntry
>();
}
#else
blockmap
=
new
VisualBlockEntry
[(
1
<<
16
)
/
BLOCK_SIZE
,
(
1
<<
16
)
/
BLOCK_SIZE
];
// 1 megabyte per blockmap
#endif
}
// Disposer
internal
void
Dispose
()
...
...
@@ -106,6 +114,7 @@ namespace CodeImp.DoomBuilder.VisualModes
// Creates the block if it doesn't exist yet
public
VisualBlockEntry
GetBlock
(
Point
p
)
{
#if DICTIONARY_BLOCKMAP
ulong
k
=
GetBlockKey
(
p
);
VisualBlockEntry
vbe
;
...
...
@@ -113,13 +122,26 @@ namespace CodeImp.DoomBuilder.VisualModes
return
vbe
;
else
return
(
blockmap
[
k
]
=
new
VisualBlockEntry
());
}
#else
int
blockX
=
p
.
X
%
blockmap
.
GetLength
(
0
);
int
blockY
=
p
.
Y
%
blockmap
.
GetLength
(
1
);
if
(
blockX
<
0
)
blockX
+=
blockmap
.
GetLength
(
0
);
if
(
blockY
<
0
)
blockY
+=
blockmap
.
GetLength
(
1
);
if
(
blockmap
[
blockX
,
blockY
]
==
null
)
blockmap
[
blockX
,
blockY
]
=
new
VisualBlockEntry
();
return
blockmap
[
blockX
,
blockY
];
#endif
}
// This clears the blockmap
public
void
Clear
()
{
#if DICTIONARY_BLOCKMAP
blockmap
=
new
Dictionary
<
ulong
,
VisualBlockEntry
>();
}
#else
blockmap
=
new
VisualBlockEntry
[(
1
<<
16
)
/
BLOCK_SIZE
,
(
1
<<
16
)
/
BLOCK_SIZE
];
// ok this a little bit expensive..
#endif
}
// This returns a range of blocks in a square
public
List
<
VisualBlockEntry
>
GetSquareRange
(
RectangleF
rect
)
...
...
@@ -453,6 +475,6 @@ namespace CodeImp.DoomBuilder.VisualModes
}
}
#
endregion
#endregion
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment