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
fadf2488
Commit
fadf2488
authored
13 years ago
by
Perttu Ahola
Browse files
Options
Downloads
Patches
Plain Diff
Handle ActiveBlockModifier intervals properly, down to 1s
parent
0f2b932e
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/environment.cpp
+25
-13
25 additions, 13 deletions
src/environment.cpp
src/environment.h
+11
-1
11 additions, 1 deletion
src/environment.h
with
36 additions
and
14 deletions
src/environment.cpp
+
25
−
13
View file @
fadf2488
...
...
@@ -301,9 +301,9 @@ ServerEnvironment::~ServerEnvironment()
m_map
->
drop
();
// Delete ActiveBlockModifiers
for
(
core
::
list
<
A
ctiveBlockModifier
*
>::
Iterator
for
(
core
::
list
<
A
BMWithState
>::
Iterator
i
=
m_abms
.
begin
();
i
!=
m_abms
.
end
();
i
++
){
delete
(
*
i
)
;
delete
i
->
abm
;
}
}
...
...
@@ -566,20 +566,29 @@ class ABMHandler
ServerEnvironment
*
m_env
;
std
::
map
<
content_t
,
std
::
list
<
ActiveABM
>
>
m_aabms
;
public:
ABMHandler
(
core
::
list
<
ActiveBlockModifier
*>
&
abms
,
float
dtime_s
,
ServerEnvironment
*
env
)
:
ABMHandler
(
core
::
list
<
ABMWithState
>
&
abms
,
float
dtime_s
,
ServerEnvironment
*
env
,
bool
use_timers
)
:
m_env
(
env
)
{
infostream
<<
"ABMHandler: dtime_s="
<<
dtime_s
<<
std
::
endl
;
if
(
dtime_s
<
0.001
)
return
;
INodeDefManager
*
ndef
=
env
->
getGameDef
()
->
ndef
();
for
(
core
::
list
<
A
ctiveBlockModifier
*
>::
Iterator
for
(
core
::
list
<
A
BMWithState
>::
Iterator
i
=
abms
.
begin
();
i
!=
abms
.
end
();
i
++
){
ActiveBlockModifier
*
abm
=
*
i
;
ActiveBlockModifier
*
abm
=
i
->
abm
;
float
trigger_interval
=
abm
->
getTriggerInterval
();
if
(
trigger_interval
<
0.001
)
trigger_interval
=
0.001
;
if
(
use_timers
){
i
->
timer
+=
dtime_s
;
if
(
i
->
timer
<
trigger_interval
)
continue
;
i
->
timer
-=
trigger_interval
;
}
ActiveABM
aabm
;
aabm
.
abm
=
abm
;
float
intervals
=
dtime_s
/
abm
->
getT
rigger
I
nterval
()
;
float
intervals
=
dtime_s
/
t
rigger
_i
nterval
;
float
chance
=
abm
->
getTriggerChance
();
if
(
chance
==
0
)
chance
=
1
;
...
...
@@ -605,6 +614,9 @@ class ABMHandler
}
void
apply
(
MapBlock
*
block
)
{
if
(
m_aabms
.
empty
())
return
;
ServerMap
*
map
=
&
m_env
->
getServerMap
();
// Find out how many objects the block contains
u32
active_object_count
=
block
->
m_static_objects
.
m_active
.
size
();
...
...
@@ -685,13 +697,13 @@ void ServerEnvironment::activateBlock(MapBlock *block, u32 additional_dtime)
}
/* Handle ActiveBlockModifiers */
ABMHandler
abmhandler
(
m_abms
,
dtime_s
,
this
);
ABMHandler
abmhandler
(
m_abms
,
dtime_s
,
this
,
false
);
abmhandler
.
apply
(
block
);
}
void
ServerEnvironment
::
addActiveBlockModifier
(
ActiveBlockModifier
*
abm
)
{
m_abms
.
push_back
(
abm
);
m_abms
.
push_back
(
ABMWithState
(
abm
)
)
;
}
void
ServerEnvironment
::
clearAllObjects
()
...
...
@@ -973,14 +985,14 @@ void ServerEnvironment::step(float dtime)
}
}
const
float
abm_interval
=
1
0
.0
;
const
float
abm_interval
=
1.0
;
if
(
m_active_block_modifier_interval
.
step
(
dtime
,
abm_interval
))
{
ScopeProfiler
sp
(
g_profiler
,
"SEnv: modify in blocks avg /1
0
s"
,
SPT_AVG
);
ScopeProfiler
sp
(
g_profiler
,
"SEnv: modify in blocks avg /1s"
,
SPT_AVG
);
TimeTaker
timer
(
"modify in active blocks"
);
// Initialize handling of ActiveBlockModifiers
ABMHandler
abmhandler
(
m_abms
,
abm_interval
,
this
);
ABMHandler
abmhandler
(
m_abms
,
abm_interval
,
this
,
true
);
for
(
core
::
map
<
v3s16
,
bool
>::
Iterator
i
=
m_active_blocks
.
m_list
.
getIterator
();
...
...
This diff is collapsed.
Click to expand it.
src/environment.h
+
11
−
1
View file @
fadf2488
...
...
@@ -118,6 +118,16 @@ class ActiveBlockModifier
u32
active_object_count
,
u32
active_object_count_wider
){};
};
struct
ABMWithState
{
ActiveBlockModifier
*
abm
;
float
timer
;
ABMWithState
(
ActiveBlockModifier
*
abm_
)
:
abm
(
abm_
)
{}
};
/*
List of active blocks, used by ServerEnvironment
*/
...
...
@@ -329,7 +339,7 @@ class ServerEnvironment : public Environment
u32
m_game_time
;
// A helper variable for incrementing the latter
float
m_game_time_fraction_counter
;
core
::
list
<
A
ctiveBlockModifier
*
>
m_abms
;
core
::
list
<
A
BMWithState
>
m_abms
;
};
#ifndef SERVER
...
...
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