Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 3 | |
| 4 | # Mesa 3-D graphics library |
Brian Paul | dd7f735 | 2003-12-05 00:46:06 +0000 | [diff] [blame^] | 5 | # Version: 5.1 |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 6 | # |
Brian Paul | dd7f735 | 2003-12-05 00:46:06 +0000 | [diff] [blame^] | 7 | # Copyright (C) 1999-2003 Brian Paul All Rights Reserved. |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 8 | # |
| 9 | # Permission is hereby granted, free of charge, to any person obtaining a |
| 10 | # copy of this software and associated documentation files (the "Software"), |
| 11 | # to deal in the Software without restriction, including without limitation |
| 12 | # the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 13 | # and/or sell copies of the Software, and to permit persons to whom the |
| 14 | # Software is furnished to do so, subject to the following conditions: |
| 15 | # |
| 16 | # The above copyright notice and this permission notice shall be included |
| 17 | # in all copies or substantial portions of the Software. |
| 18 | # |
| 19 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 20 | # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 21 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 22 | # BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN |
| 23 | # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 24 | # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 25 | |
| 26 | |
| 27 | # Generate the glapitable.h file. |
| 28 | # |
| 29 | # Usage: |
Brian Paul | dd7f735 | 2003-12-05 00:46:06 +0000 | [diff] [blame^] | 30 | # python gloffsets.py >glapitable.h |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 31 | # |
| 32 | # Dependencies: |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 33 | # The apispec file must be in the current directory. |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 34 | |
| 35 | |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 36 | import apiparser; |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 37 | |
| 38 | |
| 39 | def PrintHead(): |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 40 | print '/* DO NOT EDIT - This file generated automatically with gltable.py script */' |
| 41 | print '#ifndef _GLAPI_TABLE_H_' |
| 42 | print '#define _GLAPI_TABLE_H_' |
| 43 | print '' |
Brian Paul | dd7f735 | 2003-12-05 00:46:06 +0000 | [diff] [blame^] | 44 | print '#ifndef GLAPIENTRYP' |
| 45 | print '#define GLAPIENTRYP' |
| 46 | print '#endif' |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 47 | print '' |
| 48 | print 'struct _glapi_table' |
| 49 | print '{' |
| 50 | return |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 51 | #endif |
| 52 | |
| 53 | |
| 54 | def PrintTail(): |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 55 | print '};' |
| 56 | print '' |
| 57 | print '#endif' |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 58 | #endif |
| 59 | |
| 60 | |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 61 | records = {} |
Brian Paul | feaf04a | 2000-02-22 22:45:20 +0000 | [diff] [blame] | 62 | |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 63 | def DoRecord(name, returnType, argTypeList, argNameList, alias, offset): |
| 64 | argList = apiparser.MakeArgList(argTypeList, argNameList) |
| 65 | if offset >= 0 and not records.has_key(offset): |
| 66 | records[offset] = (name, returnType, argList) |
| 67 | #print '#define _gloffset_%s %d' % (name, offset) |
| 68 | #endif |
| 69 | |
| 70 | |
| 71 | def PrintRecords(): |
| 72 | keys = records.keys() |
| 73 | keys.sort() |
| 74 | prevk = -1 |
| 75 | for k in keys: |
| 76 | if k != prevk + 1: |
| 77 | #print 'Missing offset %d' % (prevk) |
| 78 | pass |
| 79 | prevk = int(k) |
| 80 | (name, returnType, argList) = records[k] |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 81 | print ' %s (GLAPIENTRYP %s)(%s); /* %d */' % (returnType, name, argList, k) |
Brian Paul | 6c0d72f | 2001-11-18 22:42:57 +0000 | [diff] [blame] | 82 | #endef |
| 83 | |
| 84 | |
| 85 | PrintHead() |
| 86 | apiparser.ProcessSpecFile("APIspec", DoRecord) |
| 87 | PrintRecords() |
| 88 | PrintTail() |
| 89 | |