Optimized TaskManager task locks and calls.

Run all player messages on the main thread.
This commit is contained in:
Jonathan Williams 2015-11-02 09:35:35 -06:00
parent 55d028d706
commit 3b38302429
2 changed files with 61 additions and 38 deletions

View File

@ -56,20 +56,30 @@ public class TaskManager extends MiniDbClientPlugin<TaskClient>
{
public void run()
{
boolean taskExists = false;
synchronized (_taskLock)
{
if (!_tasks.containsKey(task))
taskExists = _tasks.containsKey(task);
}
if (!taskExists)
{
_repository.addTask(task);
System.out.println("TaskManager Adding Task : " + task);
}
}
updateTasks();
}
int taskId = -1;
synchronized (_taskLock)
{
final boolean success = _repository.addAccountTask(PlayerCache.getInstance().getPlayer(uuid).getAccountId(), _tasks.get(task));
taskId = _tasks.get(task);
}
final boolean success = _repository.addAccountTask(PlayerCache.getInstance().getPlayer(uuid).getAccountId(), taskId);
if (callback != null)
{
@ -82,7 +92,6 @@ public class TaskManager extends MiniDbClientPlugin<TaskClient>
});
}
}
}
});
}

View File

@ -115,7 +115,12 @@ public class TrickDialogue
final int amount = Math.max(new Random().nextInt(100) + 100, (int) Math.floor(new Random().nextDouble() * 600));
_plugin.getDonationManager().RewardCoins(new Callback<Boolean>()
{
public void run(Boolean completed)
public void run(final Boolean completed)
{
_plugin.runSync(new Runnable()
{
@Override
public void run()
{
if (completed)
{
@ -129,6 +134,8 @@ public class TrickDialogue
UtilPlayer.message(_player, F.main("Treat", "There was an error giving " + F.elem(C.cYellow + amount + " Coins") + " to you. Please visit that villager again.") + ".");
}
}
});
}
}, "Treat " + _villagerName, _player.getName(), _plugin.getClientManager().getAccountId(_player), amount);
}
else //Gems
@ -136,7 +143,12 @@ public class TrickDialogue
final int amount = Math.max(new Random().nextInt(100) + 100, (int) Math.floor(new Random().nextDouble() * 600));
_plugin.getDonationManager().RewardGems(new Callback<Boolean>()
{
public void run(Boolean completed)
public void run(final Boolean completed)
{
_plugin.runSync(new Runnable()
{
@Override
public void run()
{
if (completed)
{
@ -150,6 +162,8 @@ public class TrickDialogue
UtilPlayer.message(_player, F.main("Treat", "There was an error giving " + F.elem(C.cGreen + amount + " Gems") + " to you. Please visit that villager again.") + ".");
}
}
});
}
}, "Treat " + _villagerName, _player.getName(), _player.getUniqueId(), amount);
}
}