Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
PlayerBuffStorage.java
Package: src.rar [view]
Upload User: gwt600
Upload Date: 2021-06-03
Package Size: 704k
Code Size: 4k
Category:
Games
Development Platform:
Java
- /*
- This file is part of the OdinMS Maple Story Server
- Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
- Matthias Butz <matze@odinms.de>
- Jan Christian Meyer <vimes@odinms.de>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License version 3
- as published by the Free Software Foundation. You may not use, modify
- or distribute this program under any other version of the
- GNU Affero General Public License.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package net.sf.odinms.net.world;
- import java.io.Serializable;
- import java.util.ArrayList;
- import java.util.List;
- import net.sf.odinms.tools.Pair;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- /**
- *
- * @author Danny
- */
- @SuppressWarnings("serial")
- public class PlayerBuffStorage implements Serializable {
- private List<Pair<Integer, List<PlayerBuffValueHolder>>> buffs = new ArrayList<Pair<Integer, List<PlayerBuffValueHolder>>>();
- private List<Pair<Integer, List<PlayerCoolDownValueHolder>>> coolDowns = new ArrayList<Pair<Integer, List<PlayerCoolDownValueHolder>>>();
- private int id = (int) (Math.random()*100);
- @SuppressWarnings("unused")
- public PlayerBuffStorage() {
- // Empty constructor
- }
- public void addBuffsToStorage(int chrid, List<PlayerBuffValueHolder> toStore) {
- for (Pair<Integer, List<PlayerBuffValueHolder>> stored : buffs) {
- if (stored.getLeft() == Integer.valueOf(chrid)) {
- buffs.remove(stored);
- }
- }
- buffs.add(new Pair<Integer, List<PlayerBuffValueHolder>>(Integer.valueOf(chrid), toStore));
- }
- public void addCooldownsToStorage(int chrid, List<PlayerCoolDownValueHolder> toStore) {
- for (Pair<Integer, List<PlayerCoolDownValueHolder>> stored : coolDowns) {
- if (stored.getLeft() == Integer.valueOf(chrid)) {
- coolDowns.remove(stored);
- }
- }
- coolDowns.add(new Pair<Integer, List<PlayerCoolDownValueHolder>>(Integer.valueOf(chrid), toStore));
- }
- public List<PlayerBuffValueHolder> getBuffsFromStorage(int chrid) {
- List<PlayerBuffValueHolder> ret = null;
- Pair<Integer, List<PlayerBuffValueHolder>> stored;
- for (int i = 0; i < buffs.size(); i++) {
- stored = buffs.get(i);
- if (stored.getLeft().equals(Integer.valueOf(chrid))) {
- ret = stored.getRight();
- buffs.remove(stored);
- }
- }
- return ret;
- }
- public List<PlayerCoolDownValueHolder> getCooldownsFromStorage(int chrid) {
- List<PlayerCoolDownValueHolder> ret = null;
- Pair<Integer, List<PlayerCoolDownValueHolder>> stored;
- for (int i = 0; i < coolDowns.size(); i++) {
- stored = coolDowns.get(i);
- if (stored.getLeft().equals(Integer.valueOf(chrid))) {
- ret = stored.getRight();
- coolDowns.remove(stored);
- }
- }
- return ret;
- }
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + id;
- return result;
- }
- @Override
- public boolean equals(Object obj) {
- if (this == obj)
- return true;
- if (obj == null)
- return false;
- if (getClass() != obj.getClass())
- return false;
- final PlayerBuffStorage other = (PlayerBuffStorage) obj;
- if (id != other.id)
- return false;
- return true;
- }
- }