project_files/HedgewarsMobile/Classes/AmmoMenuViewController.h
author koda
Tue, 23 Aug 2011 03:46:17 +0200
changeset 5662 99083392cd4f
parent 4976 088d40d8aba2
permissions -rw-r--r--
FREE AT LAST!!! SDL came around a (mostly) sane way for implementing rotation events, so we can scrap all the workaround code that has been added to workaround it!! Also this allows us to use proper (internal) multitasking handling and can simplify optional settings and other yet unexplored features. Yay!
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     1
/*
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4946
diff changeset
     3
 * Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com>
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     4
 *
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     8
 *
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    12
 * GNU General Public License for more details.
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    13
 *
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    17
 *
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    18
 * File created on 03/10/2010.
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    19
 */
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    20
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    21
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    22
#import <UIKit/UIKit.h>
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    23
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    24
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    25
@interface AmmoMenuViewController : UIViewController {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3924
diff changeset
    26
    NSArray *buttonsArray;
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3940
diff changeset
    27
    NSArray *imagesArray;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3924
diff changeset
    28
    
3981
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3978
diff changeset
    29
    UILabel *nameLabel;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3978
diff changeset
    30
    UILabel *extraLabel;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3978
diff changeset
    31
    UILabel *captionLabel;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3978
diff changeset
    32
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
    33
    uint8_t *delay;
3978
9660600e43cb fix some glitches
koda
parents: 3977
diff changeset
    34
    BOOL *shouldUpdateImage;
4946
076767e86f2b better ammomenu window dragging algorithm (as suggested by iphonedevelopertips)
koda
parents: 4032
diff changeset
    35
    CGPoint currentPoint;
4032
4aeab704d006 can move the new ammo menu freely
koda
parents: 3989
diff changeset
    36
    CGPoint placingPoint;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3924
diff changeset
    37
    BOOL isVisible;
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    38
}
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    39
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3940
diff changeset
    40
@property (retain) NSArray *buttonsArray;
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3940
diff changeset
    41
@property (retain) NSArray *imagesArray;
3981
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3978
diff changeset
    42
@property (nonatomic,retain) UILabel *nameLabel;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3978
diff changeset
    43
@property (nonatomic,retain) UILabel *extraLabel;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3978
diff changeset
    44
@property (nonatomic,retain) UILabel *captionLabel;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3924
diff changeset
    45
@property (assign) BOOL isVisible;
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    46
3989
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
    47
-(void) buttonPressed:(id) sender;
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
    48
-(void) buttonReleased:(id) sender;
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
    49
-(void) buttonCancelled:(id) sender;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3924
diff changeset
    50
-(void) appearInView:(UIView *)container;
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3924
diff changeset
    51
-(void) disappear;
3989
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
    52
-(void) updateAmmoVisuals;
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
    53
-(void) loadLabels;
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
    54
-(void) loadAmmoStuff:(id) object;
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    55
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents:
diff changeset
    56
@end