blob: 7fa4a1b60614c550545559219b814a6ae045c1db [file] [log] [blame]
Brian Paulfeaf04a2000-02-22 22:45:20 +00001#!/usr/bin/env python
2
Brian Paul6c0d72f2001-11-18 22:42:57 +00003# $Id: gloffsets.py,v 1.5 2001/11/18 22:42:57 brianp Exp $
Brian Paulfeaf04a2000-02-22 22:45:20 +00004
5# Mesa 3-D graphics library
Brian Paul6c0d72f2001-11-18 22:42:57 +00006# Version: 4.1
Brian Paulfeaf04a2000-02-22 22:45:20 +00007#
Brian Paul6c0d72f2001-11-18 22:42:57 +00008# Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
Brian Paulfeaf04a2000-02-22 22:45:20 +00009#
10# Permission is hereby granted, free of charge, to any person obtaining a
11# copy of this software and associated documentation files (the "Software"),
12# to deal in the Software without restriction, including without limitation
13# the rights to use, copy, modify, merge, publish, distribute, sublicense,
14# and/or sell copies of the Software, and to permit persons to whom the
15# Software is furnished to do so, subject to the following conditions:
16#
17# The above copyright notice and this permission notice shall be included
18# in all copies or substantial portions of the Software.
19#
20# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
24# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
27
28# Generate the glapioffsets.h file.
29#
30# Usage:
31# gloffsets.py >glapioffsets.h
32#
33# Dependencies:
Brian Paul6c0d72f2001-11-18 22:42:57 +000034# The apispec file must be in the current directory.
Brian Paulfeaf04a2000-02-22 22:45:20 +000035
36
Brian Paul6c0d72f2001-11-18 22:42:57 +000037
38import apiparser;
Brian Paulfeaf04a2000-02-22 22:45:20 +000039
40
41def PrintHead():
Brian Paulecfdd882000-05-11 17:45:20 +000042 print '/* DO NOT EDIT - This file generated automatically by gloffsets.py script */'
Brian Paulfeaf04a2000-02-22 22:45:20 +000043 print '#ifndef _GLAPI_OFFSETS_H_'
44 print '#define _GLAPI_OFFSETS_H_'
45 print ''
46 return
Brian Paul6c0d72f2001-11-18 22:42:57 +000047#enddef
Brian Paulfeaf04a2000-02-22 22:45:20 +000048
49
50def PrintTail():
51 print ''
52 print '#endif'
Brian Paulfeaf04a2000-02-22 22:45:20 +000053#enddef
54
55
Brian Paul6c0d72f2001-11-18 22:42:57 +000056records = {}
Brian Paulfeaf04a2000-02-22 22:45:20 +000057
Brian Paul6c0d72f2001-11-18 22:42:57 +000058def AddOffset(name, returnType, argTypeList, argNameList, alias, offset):
59 argList = apiparser.MakeArgList(argTypeList, argNameList)
60 if offset >= 0 and not records.has_key(offset):
61 records[offset] = name
62 #print '#define _gloffset_%s %d' % (name, offset)
Brian Paulfeaf04a2000-02-22 22:45:20 +000063#enddef
64
65
Brian Paul6c0d72f2001-11-18 22:42:57 +000066def PrintRecords():
67 keys = records.keys()
68 keys.sort()
69 prevk = -1
70 for k in keys:
71 if k != prevk + 1:
72 #print 'Missing offset %d' % (prevk)
73 pass
74 prevk = int(k)
75 name = records[k]
76 print '#define _gloffset_%s %d' % (name, k)
77#endef
78
79
80
Brian Paulfeaf04a2000-02-22 22:45:20 +000081
82PrintHead()
Brian Paul6c0d72f2001-11-18 22:42:57 +000083apiparser.ProcessSpecFile("APIspec", AddOffset)
84PrintRecords()
Brian Paulfeaf04a2000-02-22 22:45:20 +000085PrintTail()