Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
420125de
Commit
420125de
authored
9 years ago
by
est31
Browse files
Options
Downloads
Patches
Plain Diff
Remove busy polling inside minimap thread
parent
36163d96
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/minimap.cpp
+32
-13
32 additions, 13 deletions
src/minimap.cpp
src/minimap.h
+10
-3
10 additions, 3 deletions
src/minimap.h
with
42 additions
and
16 deletions
src/minimap.cpp
+
32
−
13
View file @
420125de
...
...
@@ -20,6 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include
"minimap.h"
#include
"logoutputbuffer.h"
#include
"jthread/jmutexautolock.h"
#include
"jthread/jsemaphore.h"
#include
"clientmap.h"
#include
"settings.h"
#include
"nodedef.h"
...
...
@@ -47,16 +48,15 @@ MinimapUpdateQueue::~MinimapUpdateQueue()
{
JMutexAutoLock
lock
(
m_mutex
);
for
(
std
::
vector
<
QueuedMinimapUpdate
*>::
iterator
for
(
std
::
list
<
QueuedMinimapUpdate
*>::
iterator
i
=
m_queue
.
begin
();
i
!=
m_queue
.
end
();
i
++
)
{
i
!=
m_queue
.
end
();
++
i
)
{
QueuedMinimapUpdate
*
q
=
*
i
;
delete
q
;
}
}
void
MinimapUpdateQueue
::
addBlock
(
v3s16
pos
,
MinimapMapblock
*
data
)
bool
MinimapUpdateQueue
::
addBlock
(
v3s16
pos
,
MinimapMapblock
*
data
)
{
DSTACK
(
__FUNCTION_NAME
);
...
...
@@ -66,15 +66,14 @@ void MinimapUpdateQueue::addBlock(v3s16 pos, MinimapMapblock *data)
Find if block is already in queue.
If it is, update the data and quit.
*/
for
(
std
::
vector
<
QueuedMinimapUpdate
*>::
iterator
for
(
std
::
list
<
QueuedMinimapUpdate
*>::
iterator
i
=
m_queue
.
begin
();
i
!=
m_queue
.
end
();
i
++
)
{
i
!=
m_queue
.
end
();
++
i
)
{
QueuedMinimapUpdate
*
q
=
*
i
;
if
(
q
->
pos
==
pos
)
{
delete
q
->
data
;
q
->
data
=
data
;
return
;
return
false
;
}
}
...
...
@@ -85,16 +84,16 @@ void MinimapUpdateQueue::addBlock(v3s16 pos, MinimapMapblock *data)
q
->
pos
=
pos
;
q
->
data
=
data
;
m_queue
.
push_back
(
q
);
return
true
;
}
QueuedMinimapUpdate
*
MinimapUpdateQueue
::
pop
()
{
JMutexAutoLock
lock
(
m_mutex
);
for
(
std
::
vector
<
QueuedMinimapUpdate
*>::
iterator
for
(
std
::
list
<
QueuedMinimapUpdate
*>::
iterator
i
=
m_queue
.
begin
();
i
!=
m_queue
.
end
();
i
++
)
{
i
!=
m_queue
.
end
();
i
++
)
{
QueuedMinimapUpdate
*
q
=
*
i
;
m_queue
.
erase
(
i
);
return
q
;
...
...
@@ -106,6 +105,22 @@ QueuedMinimapUpdate * MinimapUpdateQueue::pop()
Minimap update thread
*/
void
MinimapUpdateThread
::
Stop
()
{
JThread
::
Stop
();
// give us a nudge
m_queue_sem
.
Post
();
}
void
MinimapUpdateThread
::
enqueue_Block
(
v3s16
pos
,
MinimapMapblock
*
data
)
{
if
(
m_queue
.
addBlock
(
pos
,
data
))
// we had to allocate a new block
m_queue_sem
.
Post
();
}
void
*
MinimapUpdateThread
::
Thread
()
{
ThreadStarted
();
...
...
@@ -120,8 +135,13 @@ void *MinimapUpdateThread::Thread()
while
(
!
StopRequested
())
{
m_queue_sem
.
Wait
();
if
(
StopRequested
())
break
;
while
(
m_queue
.
size
())
{
QueuedMinimapUpdate
*
q
=
m_queue
.
pop
();
if
(
!
q
)
break
;
std
::
map
<
v3s16
,
MinimapMapblock
*>::
iterator
it
;
it
=
m_blocks_cache
.
find
(
q
->
pos
);
if
(
q
->
data
)
{
...
...
@@ -138,7 +158,6 @@ void *MinimapUpdateThread::Thread()
data
->
map_invalidated
=
false
;
}
}
// sleep_ms(10);
}
END_DEBUG_EXCEPTION_HANDLER
(
errorstream
)
...
...
@@ -266,7 +285,7 @@ Mapper::~Mapper()
void
Mapper
::
addBlock
(
v3s16
pos
,
MinimapMapblock
*
data
)
{
m_minimap_update_thread
->
m_
queue
.
add
Block
(
pos
,
data
);
m_minimap_update_thread
->
en
queue
_
Block
(
pos
,
data
);
}
MinimapMode
Mapper
::
getMinimapMode
()
...
...
This diff is collapsed.
Click to expand it.
src/minimap.h
+
10
−
3
View file @
420125de
...
...
@@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include
"client.h"
#include
"voxel.h"
#include
"jthread/jmutex.h"
#include
"jthread/jsemaphore.h"
#include
<map>
#include
<string>
#include
<vector>
...
...
@@ -93,8 +94,9 @@ class MinimapUpdateQueue
~
MinimapUpdateQueue
();
void
addBlock
(
v3s16
pos
,
MinimapMapblock
*
data
);
bool
addBlock
(
v3s16
pos
,
MinimapMapblock
*
data
);
// blocking!!
QueuedMinimapUpdate
*
pop
();
u32
size
()
...
...
@@ -104,13 +106,15 @@ class MinimapUpdateQueue
}
private
:
std
::
vector
<
QueuedMinimapUpdate
*>
m_queue
;
std
::
list
<
QueuedMinimapUpdate
*>
m_queue
;
JMutex
m_mutex
;
};
class
MinimapUpdateThread
:
public
JThread
{
private:
JSemaphore
m_queue_sem
;
MinimapUpdateQueue
m_queue
;
public:
MinimapUpdateThread
(
IrrlichtDevice
*
device
,
Client
*
client
)
...
...
@@ -124,13 +128,16 @@ class MinimapUpdateThread : public JThread
MinimapPixel
*
getMinimapPixel
(
v3s16
pos
,
s16
height
,
s16
&
pixel_height
);
s16
getAirCount
(
v3s16
pos
,
s16
height
);
video
::
SColor
getColorFromId
(
u16
id
);
void
enqueue_Block
(
v3s16
pos
,
MinimapMapblock
*
data
);
IrrlichtDevice
*
device
;
Client
*
client
;
video
::
IVideoDriver
*
driver
;
ITextureSource
*
tsrc
;
void
Stop
();
void
*
Thread
();
MinimapData
*
data
;
MinimapUpdateQueue
m_queue
;
std
::
map
<
v3s16
,
MinimapMapblock
*>
m_blocks_cache
;
};
...
...
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