~son-of-yhwh/widelands/experimental

« back to all changes in this revision

Viewing changes to src/intro.cc

  • Committer: sirver
  • Date: 2002-02-05 20:54:08 UTC
  • Revision ID: git-v1:df384fd3a5e53be1f37803d1c0381fa993844bf5
Initial revision


git-svn-id: https://widelands.svn.sourceforge.net/svnroot/widelands/trunk@2 37b2a8de-5219-0410-9f54-a31bc463ab9c

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2001 by Holger Rapp 
 
3
 * 
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 * 
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#include "intro.h"
 
21
#include "cursor.h"
 
22
#include "fileloc.h"
 
23
 
 
24
/** void run_intro(void)
 
25
 *
 
26
 * This functions run some kind of intro. It's mainly thought to be
 
27
 * a space holder if an intro is defined somewhen in the future
 
28
 *
 
29
 * Args: none
 
30
 * Returns: nothing
 
31
 */
 
32
void run_intro(void) {
 
33
                  static Cursor cur; // This is the global cursor instance, init here for the whole game
 
34
 
 
35
                  Pic *cursor=new Pic;
 
36
                  const char* bmp=g_fileloc.locate_file("cursor.bmp", TYPE_PIC);
 
37
                  
 
38
                  assert(bmp);
 
39
                  
 
40
                  cursor->load(bmp);
 
41
                  cursor->set_clrkey(0,0,255);
 
42
                 
 
43
                  g_cur.set_pic(cursor);
 
44
 
 
45
                  return;
 
46
}