summaryrefslogblamecommitdiff
path: root/src/utils/speedconv.cpp
blob: f6be2e7ba4747f3377f700bb26a4dce8aef003e8 (plain) (tree)



















                                                                            
                            


                                    
                                                 





                                                   
/*
 *  The Mana Server
 *  Copyright (C) 2004-2010  The Mana World Development Team
 *
 *  This file is part of The Mana Server.
 *
 *  The Mana Server is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  The Mana Server 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with The Mana Server.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "utils/speedconv.h"

double utils::tpsToSpeed(double tps)
{
    return (32000 / (tps * DEFAULT_TILE_LENGTH));
}

double utils::speedToTps(double speed)
{
    return (32000 / (speed * DEFAULT_TILE_LENGTH));
}