61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
/*
|
|
* PVVMUD a 3D MUD
|
|
* Copyright (C) 1998-1999 Programvareverkstedet (pvv@pvv.org)
|
|
*
|
|
* 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 the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
#include <stdio.h>
|
|
#include <strings.h>
|
|
#include "geometry.H"
|
|
|
|
|
|
int main(int argc, char * argv[]){
|
|
char bogfile[256];
|
|
float scale;
|
|
FILE * source;
|
|
CGeometry * geo;
|
|
|
|
if (argc != 3) {
|
|
fprintf(stderr,"usage: %s scale <filename>\n",argv[0]);
|
|
exit(1);
|
|
}
|
|
|
|
strcpy(bogfile,argv[2]);
|
|
if (strrchr (bogfile, '/') != NULL){
|
|
if (strchr (strrchr(bogfile,'/'), '.') == NULL)
|
|
strcat(bogfile,".bog");
|
|
} else if (strchr (bogfile, '.') == NULL)
|
|
strcat(bogfile,".bog");
|
|
|
|
sscanf(argv[1],"%f",&scale);
|
|
|
|
printf("Scale: %f\n",scale);
|
|
|
|
geo = new CGeometry(1);
|
|
|
|
geo->load(bogfile);
|
|
|
|
geo->scale(scale);
|
|
|
|
geo->save(bogfile);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|