project_files/frontlib/frontlib.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 06 Jun 2020 15:40:51 +0200
changeset 15597 6e72bd61002e
parent 10017 de822cd3df3a
permissions -rw-r--r--
Disable gfMoreWind for land objects on turn end only after a fixed-time delay 15s sounds much, but it's the average amount for gfMineStrike mines to settle naturally. And it would be very confusing to see falling mines suddenly not caring about gfMoreWind for no apparent reason. Note this whole thing is a giant hack anyway, to prevent a turn being blocked by infinitely bouncing mines. The better solution would be to help gfMoreWind-affected land objects settle naturally more reliably even under extreme wind. But this commit is "good enough" for now. If you don't like the delay, you can always tweak the constant.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     1
/*
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     2
 * Hedgewars, a free turn based strategy game
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     3
 * Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com>
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     4
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     5
 * This program is free software; you can redistribute it and/or
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     6
 * modify it under the terms of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     7
 * as published by the Free Software Foundation; either version 2
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     8
 * of the License, or (at your option) any later version.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
     9
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    13
 * GNU General Public License for more details.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    14
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    15
 * You should have received a copy of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    16
 * along with this program; if not, write to the Free Software
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    18
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    19
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    20
#include "frontlib.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    21
#include "util/logging.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    22
#include <SDL_net.h>
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    23
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    24
int flib_init() {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    25
    flib_log_d("Initializing frontlib");
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    26
    if(SDLNet_Init()==-1) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    27
        flib_log_e("Error in SDLNet_Init: %s", SDLNet_GetError());
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    28
        return -1;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    29
    }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    30
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    31
    return 0;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    32
}
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    33
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    34
void flib_quit() {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    35
    flib_log_d("Shutting down frontlib");
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    36
    SDLNet_Quit();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7320
diff changeset
    37
}