mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
530e8fae34
This allows current_class to refer to procols as well (for error reporting).
139 lines
4.2 KiB
C
139 lines
4.2 KiB
C
/*
|
|
class.h
|
|
|
|
QC class support code
|
|
|
|
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
Date: 2002/05/08
|
|
|
|
This program 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 (at your option) any later version.
|
|
|
|
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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#ifndef __class_h
|
|
#define __class_h
|
|
|
|
typedef enum {
|
|
ct_class,
|
|
ct_category,
|
|
ct_protocol,
|
|
} ct_type_t;
|
|
|
|
typedef struct class_type_s {
|
|
ct_type_t type;
|
|
union {
|
|
struct category_s *category;
|
|
struct class_s *class;
|
|
struct protocol_s *protocol;
|
|
} c;
|
|
} class_type_t;
|
|
|
|
typedef struct class_s {
|
|
int defined;
|
|
const char *name;
|
|
struct class_s *super_class;
|
|
struct category_s *categories;
|
|
struct struct_s *ivars;
|
|
struct methodlist_s *methods;
|
|
struct protocollist_s *protocols;
|
|
struct def_s *def;
|
|
struct type_s *type;
|
|
class_type_t class_type;
|
|
} class_t;
|
|
|
|
typedef struct category_s {
|
|
struct category_s *next;
|
|
const char *name;
|
|
class_t *class;
|
|
int defined;
|
|
struct methodlist_s *methods;
|
|
struct protocollist_s *protocols;
|
|
struct def_s *def;
|
|
class_type_t class_type;
|
|
} category_t;
|
|
|
|
typedef struct protocol_s {
|
|
const char *name;
|
|
struct methodlist_s *methods;
|
|
struct protocollist_s *protocols;
|
|
class_type_t class_type;
|
|
} protocol_t;
|
|
|
|
typedef struct protocollist_s {
|
|
int count;
|
|
protocol_t **list;
|
|
} protocollist_t;
|
|
|
|
extern class_t class_id;
|
|
extern class_t class_Class;
|
|
extern class_t class_Protocol;
|
|
|
|
extern class_type_t *current_class;
|
|
|
|
struct expr_s;
|
|
struct method_s;
|
|
struct protocol_s;
|
|
|
|
class_t *extract_class (class_type_t *class_type);
|
|
const char *get_class_name (class_type_t *class_type, int pretty);
|
|
struct def_s *class_def (class_type_t *class_type, int external);
|
|
void class_init (void);
|
|
class_t *get_class (const char *name, int create);
|
|
void class_add_methods (class_t *class, struct methodlist_s *methods);
|
|
void class_add_protocols (class_t *class, protocollist_t *protocols);
|
|
struct struct_s *class_new_ivars (class_t *class);
|
|
void class_add_ivars (class_t *class, struct struct_s *ivars);
|
|
void class_check_ivars (class_t *class, struct struct_s *ivars);
|
|
void class_begin (class_type_t *class_type);
|
|
void class_finish (class_type_t *class_type);
|
|
int class_access (class_type_t *current_class, class_t *class);
|
|
struct struct_field_s *class_find_ivar (class_t *class, int vis,
|
|
const char *name);
|
|
struct expr_s *class_ivar_expr (class_type_t *class_type, const char *name);
|
|
struct method_s *class_find_method (class_type_t *class_type,
|
|
struct method_s *method);
|
|
struct method_s *class_message_response (class_t *class, int class_msg,
|
|
struct expr_s *sel);
|
|
struct def_s *class_pointer_def (class_t *class_type);
|
|
category_t *get_category (const char *class_name, const char *category_name,
|
|
int create);
|
|
void category_add_methods (category_t *category, struct methodlist_s *methods);
|
|
void category_add_protocols (category_t *category, protocollist_t *protocols);
|
|
void class_finish_module (void);
|
|
|
|
void class_to_struct (class_t *class, struct struct_s *strct);
|
|
void emit_class_ref (const char *class_name);
|
|
void emit_category_ref (const char *class_name, const char *category_name);
|
|
|
|
protocol_t *get_protocol (const char *name, int create);
|
|
void protocol_add_methods (protocol_t *protocol, struct methodlist_s *methods);
|
|
void protocol_add_protocols (protocol_t *protocol, protocollist_t *protocols);
|
|
struct def_s *protocol_def (protocol_t *protocol);
|
|
protocollist_t *new_protocol_list (void);
|
|
protocollist_t *add_protocol (protocollist_t *protocollist, const char *name);
|
|
|
|
struct def_s *emit_protocol (protocol_t *protocol);
|
|
struct def_s *emit_protocol_list (protocollist_t *protocols, const char *name);
|
|
|
|
void clear_classes (void);
|
|
|
|
#endif//__class_h
|