summaryrefslogtreecommitdiff
path: root/Zoom.c
blob: cb4760b48e5afc47977acfb65400fb9613d54fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include <exec/types.h>
#include <exec/memory.h>
#include <graphics/gfx.h>
#include <proto/exec.h>
#include <proto/graphics.h>
#include <proto/intuition.h>
#include <proto/mathffp.h>
#include <proto/mathtrans.h>

#include "Bobi.h"
#include "BobStructure.h"
#include "ByteMap.h"
#include "ZoomWindow.h"

extern struct MyBob *BobTable[];
extern struct Screen *mainscreen;
extern struct RastPort *mainrastport;
extern UWORD mainpalette[];
extern WORD actbobnum,mainx0,mainy0;

/*************************************************************************/

static void ZoomBitMap(struct BitMap *bim, LONG faktor)
{
	register struct ByteMap *sbym,*dbym;	/* Source & Destination */

	if(sbym=MakeByteMap((WORD)(bim->BytesPerRow*8),bim->Rows))
	{
		if(dbym=MakeByteMap((WORD)(bim->BytesPerRow*8),bim->Rows))
		{
			BitMapToByteMap(bim,sbym);
			ZoomByteMap(sbym,dbym,faktor);
			ByteMapToBitMap(dbym,bim);
			FreeByteMap(dbym);
		}
		else ShowMonoReq2("No memory for zoom");
		FreeByteMap(sbym);
	}
	else ShowMonoReq2("No memory for zoom");
}

/*************************************************************************/

static struct MyBob *ZoomBob(struct MyBob *bob,register LONG faktor)
{
	register struct BitMap *sbim,*dbim;
	register WORD width,height;

	if((bob->Flags & BOBF_AUTOSIZE) && (faktor>100))
	{
		width  = (bob->Width*faktor)/100+1;
		height = (bob->Height*faktor)/100+1;
	}
	else
	{
		width = bob->Width; height = bob->Height;
	}

	if(sbim=BobToBitMap(bob))
	{
		if(dbim=MakeBitMap(width,height,bob->Depth))
		{
			BltBitMap(sbim,0,0,dbim,(width-bob->Width)/2,
				(height-bob->Height)/2,bob->Width,bob->Height,0xc0,0xff,0);
			WaitBlit();
			ZoomBitMap(dbim,faktor);
			bob=BitMapToBob(bob,dbim,width);
			MyFreeBitMap(dbim);
		}
		else bob = 0;
		MyFreeBitMap(sbim);
	}
	else bob = 0;
	return(bob);
}

/*************************************************************************/

void ZoomFunc()
{
	register struct Window *w;
	register WORD flag = 0;
	register LONG i,increment;

	if(BobTable[actbobnum])
	{
		LockWindows();
		NewWindowStructure1.Screen = mainscreen;
		if(w=OpenWindow(&NewWindowStructure1))
		{
			do
			{
				register struct IntuiMessage *msg;

				WaitPort(w->UserPort);
				msg=(struct IntuiMessage *)GetMsg(w->UserPort);
				if(msg->Class == CLOSEWINDOW)
				{
					flag = -1;
				}
				else if(msg->Class == GADGETUP)
				{
					if(msg->IAddress == (APTR)&OKGadget)
					{
							flag = 1;
					}
					else if(msg->IAddress == (APTR)&CancelGadget)
					{
							flag = -1;
					}
				}
			} while(!flag);
			CloseWindow(w);
			LoadPalette(mainpalette);

			if(flag>0)
			{
				register struct MyBob *bob;

				increment=LastGadgetSInfo.LongInt-FirstGadgetSInfo.LongInt;
				increment/=FramesGadgetSInfo.LongInt;

				for(i=0; i<FramesGadgetSInfo.LongInt; ++i)
				{
					if(bob=ZoomBob(BobTable[actbobnum],i*increment))
					{
						ShowBob(bob);
						InsertBob(bob,(WORD)(actbobnum+i+1));
					}
					else
					{
						ShowMonoReq2("No memory for new bobs, Zoom aborted.");
						break;
					}
				}

				for(i=1; i<=FramesGadgetSInfo.LongInt; ++i)
				{
					if(bob=AutoResizeBob(BobTable[actbobnum+i]))
					{
						FreeBob(BobTable[actbobnum+i]);
						BobTable[actbobnum+i] = bob;
						ShowBob(bob);
					}
					else ShowMonoReq2("Zoom:noresize");
				}
			}
		}
		UnLockWindows();
	}
	else ShowMonoReq2("Select a bob to zoom!");
}