Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Grasscutter
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
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
ziqian zhang
Grasscutter
Commits
e0593554
Commit
e0593554
authored
3 years ago
by
logictc
Committed by
Melledy
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
implement persist energy
parent
7f7e82e7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/emu/grasscutter/game/avatar/Avatar.java
+27
-12
27 additions, 12 deletions
src/main/java/emu/grasscutter/game/avatar/Avatar.java
src/main/java/emu/grasscutter/game/entity/EntityAvatar.java
+4
-2
4 additions, 2 deletions
src/main/java/emu/grasscutter/game/entity/EntityAvatar.java
with
31 additions
and
14 deletions
src/main/java/emu/grasscutter/game/avatar/Avatar.java
+
27
−
12
View file @
e0593554
...
...
@@ -81,6 +81,7 @@ public class Avatar {
private
int
satiation
;
// ?
private
int
satiationPenalty
;
// ?
private
float
currentHp
;
private
float
currentEnergy
;
@Transient
private
final
Int2ObjectMap
<
GameItem
>
equips
;
@Transient
private
final
Int2FloatOpenHashMap
fightProp
;
...
...
@@ -149,7 +150,7 @@ public class Avatar {
this
.
recalcStats
();
this
.
currentHp
=
getFightProperty
(
FightProperty
.
FIGHT_PROP_MAX_HP
);
setFightProperty
(
FightProperty
.
FIGHT_PROP_CUR_HP
,
this
.
currentHp
);
this
.
currentEnergy
=
0
f
;
// Load handler
this
.
onLoad
();
}
...
...
@@ -358,6 +359,30 @@ public class Avatar {
this
.
currentHp
=
currentHp
;
}
public
void
setCurrentEnergy
()
{
this
.
setCurrentEnergy
(
this
.
currentEnergy
);
}
public
void
setCurrentEnergy
(
float
currentEnergy
)
{
if
(
this
.
getSkillDepot
()
!=
null
&&
this
.
getSkillDepot
().
getEnergySkillData
()
!=
null
)
{
ElementType
element
=
this
.
getSkillDepot
().
getElementType
();
this
.
setFightProperty
(
element
.
getMaxEnergyProp
(),
this
.
getSkillDepot
().
getEnergySkillData
().
getCostElemVal
());
if
(
GAME_OPTIONS
.
energyUsage
)
{
this
.
setFightProperty
(
element
.
getCurEnergyProp
(),
currentEnergy
);
}
else
{
this
.
setFightProperty
(
element
.
getCurEnergyProp
(),
this
.
getSkillDepot
().
getEnergySkillData
().
getCostElemVal
());
}
}
}
public
void
setCurrentEnergy
(
FightProperty
curEnergyProp
,
float
currentEnergy
)
{
this
.
setFightProperty
(
curEnergyProp
,
currentEnergy
);
this
.
currentEnergy
=
currentEnergy
;
this
.
save
();
}
public
Int2FloatOpenHashMap
getFightProperties
()
{
return
fightProp
;
}
...
...
@@ -516,17 +541,7 @@ public class Avatar {
}
// Set energy usage
if
(
this
.
getSkillDepot
()
!=
null
&&
this
.
getSkillDepot
().
getEnergySkillData
()
!=
null
)
{
ElementType
element
=
this
.
getSkillDepot
().
getElementType
();
this
.
setFightProperty
(
element
.
getMaxEnergyProp
(),
this
.
getSkillDepot
().
getEnergySkillData
().
getCostElemVal
());
if
(
GAME_OPTIONS
.
energyUsage
)
{
this
.
setFightProperty
(
element
.
getCurEnergyProp
(),
currentEnergy
);
}
else
{
this
.
setFightProperty
(
element
.
getCurEnergyProp
(),
this
.
getSkillDepot
().
getEnergySkillData
().
getCostElemVal
());
}
}
setCurrentEnergy
(
currentEnergy
);
// Artifacts
for
(
int
slotId
=
1
;
slotId
<=
5
;
slotId
++)
{
...
...
This diff is collapsed.
Click to expand it.
src/main/java/emu/grasscutter/game/entity/EntityAvatar.java
+
4
−
2
View file @
e0593554
...
...
@@ -46,6 +46,7 @@ public class EntityAvatar extends GameEntity {
public
EntityAvatar
(
Scene
scene
,
Avatar
avatar
)
{
super
(
scene
);
this
.
avatar
=
avatar
;
this
.
avatar
.
setCurrentEnergy
();
this
.
id
=
getScene
().
getWorld
().
getNextEntityId
(
EntityIdType
.
AVATAR
);
GameItem
weapon
=
this
.
getAvatar
().
getWeapon
();
...
...
@@ -57,6 +58,7 @@ public class EntityAvatar extends GameEntity {
public
EntityAvatar
(
Avatar
avatar
)
{
super
(
null
);
this
.
avatar
=
avatar
;
this
.
avatar
.
setCurrentEnergy
();
}
public
Player
getPlayer
()
{
...
...
@@ -128,7 +130,7 @@ public class EntityAvatar extends GameEntity {
public
void
clearEnergy
(
PropChangeReason
reason
)
{
FightProperty
curEnergyProp
=
this
.
getAvatar
().
getSkillDepot
().
getElementType
().
getCurEnergyProp
();
this
.
setFightProp
er
t
y
(
curEnergyProp
,
0
);
this
.
avatar
.
setCurrentEn
er
g
y
(
curEnergyProp
,
0
);
this
.
getScene
().
broadcastPacket
(
new
PacketAvatarFightPropUpdateNotify
(
this
.
getAvatar
(),
curEnergyProp
));
this
.
getScene
().
broadcastPacket
(
new
PacketEntityFightPropChangeReasonNotify
(
this
,
curEnergyProp
,
0
f
,
reason
));
...
...
@@ -158,7 +160,7 @@ public class EntityAvatar extends GameEntity {
// Set energy and notify.
if
(
newEnergy
!=
curEnergy
)
{
this
.
setFightProp
er
t
y
(
curEnergyProp
,
newEnergy
);
this
.
avatar
.
setCurrentEn
er
g
y
(
curEnergyProp
,
newEnergy
);
this
.
getScene
().
broadcastPacket
(
new
PacketAvatarFightPropUpdateNotify
(
this
.
getAvatar
(),
curEnergyProp
));
this
.
getScene
().
broadcastPacket
(
new
PacketEntityFightPropChangeReasonNotify
(
this
,
curEnergyProp
,
newEnergy
,
reason
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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