sphere-axis-commits Mailing List for Axis for Sphere (Page 26)
Brought to you by:
pesterle
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(71) |
Jun
(4) |
Jul
(26) |
Aug
(23) |
Sep
(6) |
Oct
(2) |
Nov
(74) |
Dec
(89) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(88) |
Feb
(51) |
Mar
(26) |
Apr
(8) |
May
(55) |
Jun
(67) |
Jul
(37) |
Aug
(46) |
Sep
(12) |
Oct
(6) |
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
(13) |
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Philip E. <pes...@us...> - 2002-07-20 00:17:10
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv24093 Modified Files: traveltab.cpp traveltab.h Log Message: Support for reading mapplane info for spawnpoints, and fix for bug #583949. Index: traveltab.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/traveltab.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** traveltab.cpp 12 Jul 2002 15:15:32 -0000 1.17 --- traveltab.cpp 20 Jul 2002 00:17:00 -0000 1.18 *************** *** 425,435 **** } m_csCoords.SetWindowText(Coords); ! short x, y; CString csTemp = Coords.SpanExcluding(","); x = (short) atoi(csTemp); csTemp = Coords.Mid(Coords.Find(",") + 1); ! csTemp = csTemp.SpanExcluding(","); ! y = (short) atoi(csTemp); ! Recenter(x, y); } CSObject * pObject = (CSObject *) this->m_clcLocations.GetItemData(iSelIndex); --- 425,452 ---- } m_csCoords.SetWindowText(Coords); ! short x, y, z, m; CString csTemp = Coords.SpanExcluding(","); x = (short) atoi(csTemp); csTemp = Coords.Mid(Coords.Find(",") + 1); ! CString csY = csTemp.SpanExcluding(","); ! y = (short) atoi(csY); ! if ( csTemp.Find(",") != -1 ) ! { ! csTemp = csTemp.Mid(csTemp.Find(",") + 1); ! CString csZ = csTemp.SpanExcluding(","); ! z = (short) atoi(csZ); ! if ( Coords.Find(",") != -1 ) ! { ! Coords = csTemp; ! csTemp = Coords.Mid(Coords.Find(",") + 1); ! csTemp = csTemp.SpanExcluding(","); ! m = (short) atoi(csTemp); ! } ! else ! m = 0; ! } ! else ! z = 256; ! Recenter(x, y, z, m); } CSObject * pObject = (CSObject *) this->m_clcLocations.GetItemData(iSelIndex); *************** *** 733,737 **** CString csType = "<unknown>"; CString csID = "<invalid>"; ! CString csCoords = "-1,-1,-1"; bStatus = csfWorldFile.ReadString(csLine); if ( (lineCount++ % 1000) == 0 ) --- 750,754 ---- CString csType = "<unknown>"; CString csID = "<invalid>"; ! CString csCoords = "-1,-1,-1,0"; bStatus = csfWorldFile.ReadString(csLine); if ( (lineCount++ % 1000) == 0 ) *************** *** 785,789 **** csType = "<unknown>"; csID = "<invalid>"; ! csCoords = "-1,-1,-1"; break; } --- 802,806 ---- csType = "<unknown>"; csID = "<invalid>"; ! csCoords = "-1,-1,-1,0"; break; } *************** *** 837,841 **** csType = "<unknown>"; csID = "<invalid>"; ! csCoords = "-1,-1,-1"; break; } --- 854,858 ---- csType = "<unknown>"; csID = "<invalid>"; ! csCoords = "-1,-1,-1,0"; break; } *************** *** 918,925 **** CString csCoords; m_csCoords.GetWindowText(csCoords); ! short x, y; ! x = (short) atoi(csCoords.SpanExcluding(",")); ! y = (short) atoi(csCoords.Mid(csCoords.Find(",") + 1).SpanExcluding(",")); ! m_crosshairIndex = m_TravelMap.AddDrawObject(x, y, 1, 3, 0x00FFFFFF); if ( Main->GetProfileType() == PROFILE_REMOTE || ( Main->GetProfileType() == PROFILE_LOCAL && Main->m_dwRemoteSpawns ) ) --- 935,958 ---- CString csCoords; m_csCoords.GetWindowText(csCoords); ! short X, Y, Z, M; ! CString csTemp = csCoords; ! X = (short) atoi(csTemp.SpanExcluding(",")); ! csTemp = csTemp.Mid(csTemp.Find(",") + 1); ! Y = (short) atoi(csTemp.SpanExcluding(",")); ! if ( csTemp.Find(",") != -1 ) ! { ! csTemp = csTemp.Mid(csTemp.Find(",") + 1); ! Z = (short) atoi(csTemp.SpanExcluding(",")); ! if ( csTemp.Find(",") != -1 ) ! { ! csTemp = csTemp.Mid(csTemp.Find(",") + 1); ! M = (short) atoi(csTemp.SpanExcluding(",")); ! } ! else ! M = m_TravelMap.GetMapFile(); ! } ! else ! Z = 0; ! m_crosshairIndex = m_TravelMap.AddDrawObject(X, Y, 1, 3, 0x00FFFFFF); if ( Main->GetProfileType() == PROFILE_REMOTE || ( Main->GetProfileType() == PROFILE_LOCAL && Main->m_dwRemoteSpawns ) ) *************** *** 939,946 **** { bool bItem = false; ! CString csType, csID, csX, csY; CString csSpawn = m_csaSpawns.GetAt(i); csType = csSpawn.SpanExcluding(","); ! CString csTemp = csSpawn.Mid(csSpawn.Find(",") + 1); csID = csTemp.SpanExcluding(","); csTemp = csTemp.Mid(csTemp.Find(",") + 1); --- 972,979 ---- { bool bItem = false; ! CString csType, csID, csX, csY, csZ, csM; CString csSpawn = m_csaSpawns.GetAt(i); csType = csSpawn.SpanExcluding(","); ! csTemp = csSpawn.Mid(csSpawn.Find(",") + 1); csID = csTemp.SpanExcluding(","); csTemp = csTemp.Mid(csTemp.Find(",") + 1); *************** *** 948,958 **** csTemp = csTemp.Mid(csTemp.Find(",") + 1); csY = csTemp.SpanExcluding(","); ! x = (short) atoi(csX); ! y = (short) atoi(csY); if ( csType.Find("NPC") != -1 ) bItem = false; else bItem = true; ! m_TravelMap.AddDrawObject(x, y, 1, 3, bItem ? Main->m_dwItemSpawnColor : Main->m_dwNPCSpawnColor); } Recenter(); --- 981,999 ---- csTemp = csTemp.Mid(csTemp.Find(",") + 1); csY = csTemp.SpanExcluding(","); ! csTemp = csTemp.Mid(csTemp.Find(",") + 1); ! csZ = csTemp.SpanExcluding(","); ! csTemp = csTemp.Mid(csTemp.Find(",") + 1); ! csM = csTemp.SpanExcluding(","); ! short x = (short) atoi(csX); ! short y = (short) atoi(csY); ! short z = (short) atoi(csZ); ! short m = (short) atoi(csM); if ( csType.Find("NPC") != -1 ) bItem = false; else bItem = true; ! // Check map plane before drawing ! if ( (m == M) || (m == 255)) ! m_TravelMap.AddDrawObject(x, y, 1, 3, bItem ? Main->m_dwItemSpawnColor : Main->m_dwNPCSpawnColor); } Recenter(); *************** *** 1140,1148 **** } ! void CTravelTab::Recenter(short x, short y) { ! CString csPlane; ! m_ceMapPlane.GetWindowText(csPlane); ! if ( atoi(csPlane) == 2 ) m_TravelMap.SetMapFile(2); else --- 1181,1193 ---- } ! void CTravelTab::Recenter(short x, short y, short z, short m) { ! if ( m == 256 ) ! { ! CString csPlane; ! m_ceMapPlane.GetWindowText(csPlane); ! m = atoi(csPlane); ! } ! if ( m == 2 ) m_TravelMap.SetMapFile(2); else *************** *** 1158,1164 **** CString csCoords; m_csCoords.GetWindowText(csCoords); ! if ( csCoords.Find(",") == csCoords.ReverseFind(',') ) { ! csCoords.Format("%d, %d, %d", x, y, m_TravelMap.GetMapHeight(x, y)); m_csCoords.SetWindowText(csCoords); } --- 1203,1209 ---- CString csCoords; m_csCoords.GetWindowText(csCoords); ! if ( z > 255 ) { ! csCoords.Format("%d, %d, %d, %d", x, y, m_TravelMap.GetMapHeight(x, y), m); m_csCoords.SetWindowText(csCoords); } *************** *** 1175,1179 **** for ( int i = 0; i < m_csaSpawns.GetSize(); i++ ) { ! CString csType, csID, csX, csY; CString csSpawn = m_csaSpawns.GetAt(i); csType = csSpawn.SpanExcluding(","); --- 1220,1224 ---- for ( int i = 0; i < m_csaSpawns.GetSize(); i++ ) { ! CString csType, csID, csX, csY, csZ, csM; CString csSpawn = m_csaSpawns.GetAt(i); csType = csSpawn.SpanExcluding(","); *************** *** 1184,1191 **** csTemp = csTemp.Mid(csTemp.Find(",") + 1); csY = csTemp.SpanExcluding(","); x = (short) atoi(csX); y = (short) atoi(csY); CPoint pt(x, y); ! if ( mapRect.PtInRect(pt) ) m_csaLocalSpawns.Add(csSpawn); } --- 1229,1249 ---- csTemp = csTemp.Mid(csTemp.Find(",") + 1); csY = csTemp.SpanExcluding(","); + if ( csTemp.Find(",") != -1 ) + { + csTemp = csTemp.Mid(csTemp.Find(",") + 1); + csZ = csTemp.SpanExcluding(","); + if ( csTemp.Find(",") != -1 ) + { + csTemp = csTemp.Mid(csTemp.Find(",") + 1); + csM = csTemp.SpanExcluding(","); + } + } x = (short) atoi(csX); y = (short) atoi(csY); + z = (short) atoi(csZ); + int plane = (short) atoi(csM); + CPoint pt(x, y); ! if ( mapRect.PtInRect(pt) && ( (plane == m) || (plane == 255) ) ) m_csaLocalSpawns.Add(csSpawn); } Index: traveltab.h =================================================================== RCS file: /cvsroot/sphere-axis/Axis/traveltab.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** traveltab.h 2 May 2002 22:19:57 -0000 1.5 --- traveltab.h 20 Jul 2002 00:17:00 -0000 1.6 *************** *** 94,98 **** long m_crosshairIndex; bool m_bColorsLoaded; ! void Recenter(short x, short y); void Recenter(); int m_iCatSeq; --- 94,98 ---- long m_crosshairIndex; bool m_bColorsLoaded; ! void Recenter(short x, short y, short z = 256, short m = 256); void Recenter(); int m_iCatSeq; |
From: Philip E. <pes...@us...> - 2002-07-20 00:16:10
|
Update of /cvsroot/sphere-axis/axissvr In directory usw-pr-cvs1:/tmp/cvs-serv23963 Modified Files: gwhogsvr.cpp Log Message: Support for reading mapplane info for spawnpoints Index: gwhogsvr.cpp =================================================================== RCS file: /cvsroot/sphere-axis/axissvr/gwhogsvr.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** gwhogsvr.cpp 1 Jun 2002 06:51:05 -0000 1.13 --- gwhogsvr.cpp 20 Jul 2002 00:16:02 -0000 1.14 *************** *** 1941,1945 **** sprintf(szType, "<unknown>"); sprintf(szID, "<invalid>"); ! sprintf(szCoords, "-1,-1,-1"); fReadLine(pWorldFile, &szLine[0], sizeof(szLine)); stoupper(&szLine[0], strlen(szLine)); --- 1941,1945 ---- sprintf(szType, "<unknown>"); sprintf(szID, "<invalid>"); ! sprintf(szCoords, "-1,-1,-1,0"); fReadLine(pWorldFile, &szLine[0], sizeof(szLine)); stoupper(&szLine[0], strlen(szLine)); *************** *** 1984,1988 **** sprintf(szType, "<unknown>"); sprintf(szID, "<invalid>"); ! sprintf(szCoords, "-1,-1,-1"); break; } --- 1984,1988 ---- sprintf(szType, "<unknown>"); sprintf(szID, "<invalid>"); ! sprintf(szCoords, "-1,-1,-1,0"); break; } *************** *** 2033,2037 **** sprintf(szType, "<unknown>"); sprintf(szID, "<invalid>"); ! sprintf(szCoords, "-1,-1,-1"); break; } --- 2033,2037 ---- sprintf(szType, "<unknown>"); sprintf(szID, "<invalid>"); ! sprintf(szCoords, "-1,-1,-1,0"); break; } |
From: Philip E. <pes...@us...> - 2002-07-19 20:02:06
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv29403 Modified Files: launchertab.cpp Log Message: Fix for tracker #583948. Index: launchertab.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/launchertab.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** launchertab.cpp 1 May 2002 03:33:11 -0000 1.5 --- launchertab.cpp 19 Jul 2002 20:02:01 -0000 1.6 *************** *** 599,611 **** DWORD dwType; lStatus = RegQueryValueEx(hKey, "Account", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS) this->m_ceAccount.SetWindowText(szBuffer); dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "IPAddress", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS) this->m_ceIPAddress.SetWindowText(szBuffer); dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "Password", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS) { // Need to decrypt the password --- 599,611 ---- DWORD dwType; lStatus = RegQueryValueEx(hKey, "Account", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS && dwSize) this->m_ceAccount.SetWindowText(szBuffer); dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "IPAddress", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS && dwSize) this->m_ceIPAddress.SetWindowText(szBuffer); dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "Password", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS && dwSize) { // Need to decrypt the password *************** *** 616,624 **** dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "Port", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS) this->m_cePort.SetWindowText(szBuffer); dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "Client", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS) this->m_ceClient.SetWindowText(szBuffer); else --- 616,624 ---- dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "Port", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS && dwSize) this->m_cePort.SetWindowText(szBuffer); dwSize = sizeof(szBuffer); lStatus = RegQueryValueEx(hKey, "Client", NULL, &dwType, (BYTE *) &szBuffer[0], &dwSize); ! if (lStatus == ERROR_SUCCESS && dwSize) this->m_ceClient.SetWindowText(szBuffer); else |
From: Philip E. <pes...@us...> - 2002-07-18 04:10:44
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv7816 Modified Files: Drewsky.dsp Log Message: Forgot to add the new files to the project. :-p Index: Drewsky.dsp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Drewsky.dsp,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** Drewsky.dsp 1 Jun 2002 02:55:48 -0000 1.27 --- Drewsky.dsp 18 Jul 2002 04:10:39 -0000 1.28 *************** *** 199,202 **** --- 199,206 ---- # Begin Source File + SOURCE=.\AxisLogDlg.cpp + # End Source File + # Begin Source File + SOURCE=.\ChooseProfileDlg.cpp # End Source File *************** *** 592,595 **** --- 596,603 ---- # Begin Source File + SOURCE=.\AxisLogDlg.h + # End Source File + # Begin Source File + SOURCE=.\ChooseProfileDlg.h # End Source File *************** *** 997,1005 **** # End Target # End Project - # Section drewsky : {EF8782A5-4E77-4990-A8C7-0E28C52E90CF} - # 2:5:Class:CUOArt - # 2:10:HeaderFile:uoart.h - # 2:8:ImplFile:uoart.cpp - # End Section # Section drewsky : {0904F7B3-2339-44C9-857C-6EB6CFEFA3B6} # 2:21:DefaultSinkHeaderFile:uoart.h --- 1005,1008 ---- *************** *** 1014,1016 **** --- 1017,1024 ---- # 2:10:HeaderFile:uomap.h # 2:8:ImplFile:uomap.cpp + # End Section + # Section drewsky : {EF8782A5-4E77-4990-A8C7-0E28C52E90CF} + # 2:5:Class:CUOArt + # 2:10:HeaderFile:uoart.h + # 2:8:ImplFile:uoart.cpp # End Section |
From: Philip E. <pes...@us...> - 2002-07-18 02:25:05
|
Update of /cvsroot/sphere-axis/UOMap In directory usw-pr-cvs1:/tmp/cvs-serv15033 Modified Files: UOMapCtl.cpp Log Message: fixed a bug where the control would crash when using a corrupted statics file. Index: UOMapCtl.cpp =================================================================== RCS file: /cvsroot/sphere-axis/UOMap/UOMapCtl.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** UOMapCtl.cpp 30 May 2002 05:49:10 -0000 1.8 --- UOMapCtl.cpp 18 Jul 2002 02:25:02 -0000 1.9 *************** *** 668,671 **** --- 668,673 ---- // Find out which has the highest z value. int statBlock = objects[m].bXoff + (objects[m].bYoff * 8); + if ( statBlock > 64 ) + continue; objects[m].bJunk1 = 0xFF; if ( statCells[statBlock].bJunk1 == 0xFF ) *************** *** 685,688 **** --- 687,691 ---- for ( int cy = 0; cy < iCellsPerBlock; cy++ ) { + int iCellIndex = (cy * 8 / iCellsPerBlock) * 8 + (cx * 8 / iCellsPerBlock); WORD wColor; |
From: Philip E. <pes...@us...> - 2002-07-17 22:16:03
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv20649 Modified Files: CScriptObjects.cpp Log Message: Feature Request #555773. Uncategorized script entries now will display the file name as the subsection, and the block entry as the description. Index: CScriptObjects.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/CScriptObjects.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** CScriptObjects.cpp 30 May 2002 18:13:08 -0000 1.19 --- CScriptObjects.cpp 17 Jul 2002 22:16:00 -0000 1.20 *************** *** 1546,1549 **** --- 1546,1555 ---- if ( pItem->m_csDescription.Find("@") != -1 ) pItem->m_csDescription.Replace("@", pItem->m_csSubsection); + if ( pItem->m_csCategory == "<none>" ) + pItem->m_csCategory = "<uncategorized items>"; + if ( pItem->m_csSubsection == "<none>" ) + pItem->m_csSubsection = pItem->m_csFilename; + if ( pItem->m_csDescription == "<unnamed>" ) + pItem->m_csDescription = pItem->m_csValue; CCategory * pCategory = FindCategory(&m_olItems, pItem->m_csCategory); CSubsection * pSubsection = FindSubsection(pCategory, pItem->m_csSubsection); *************** *** 1564,1567 **** --- 1570,1579 ---- m_pDlg->SetPos(i); CSObject * pTemplate = (CSObject *) m_aTemplates.GetAt(i); + if ( pTemplate->m_csCategory == "<none>" ) + pTemplate->m_csCategory = "<uncategorized templates>"; + if ( pTemplate->m_csSubsection == "<none>" ) + pTemplate->m_csSubsection = pTemplate->m_csFilename; + if ( pTemplate->m_csDescription == "<unnamed>" ) + pTemplate->m_csDescription = pTemplate->m_csValue; CCategory * pCategory = FindCategory(&m_olItems, pTemplate->m_csCategory); CSubsection * pSubsection = FindSubsection(pCategory, pTemplate->m_csSubsection); *************** *** 1609,1612 **** --- 1621,1630 ---- if ( pChar->m_csDescription.Find("@") != -1 ) pChar->m_csDescription.Replace("@", pChar->m_csSubsection); + if ( pChar->m_csCategory == "<none>" ) + pChar->m_csCategory = "<uncategorized chars>"; + if ( pChar->m_csSubsection == "<none>" ) + pChar->m_csSubsection = pChar->m_csFilename; + if ( pChar->m_csDescription == "<unnamed>" ) + pChar->m_csDescription = pChar->m_csValue; CCategory * pCategory = FindCategory(&m_olNPCs, pChar->m_csCategory); CSubsection * pSubsection = FindSubsection(pCategory, pChar->m_csSubsection); *************** *** 1630,1633 **** --- 1648,1657 ---- if ( pSpawn->m_csDescription.Find("@") != -1 ) pSpawn->m_csDescription.Replace("@", pSpawn->m_csSubsection); + if ( pSpawn->m_csCategory == "<none>" ) + pSpawn->m_csCategory = "<uncategorized spawns>"; + if ( pSpawn->m_csSubsection == "<none>" ) + pSpawn->m_csSubsection = pSpawn->m_csFilename; + if ( pSpawn->m_csDescription == "<unnamed>" ) + pSpawn->m_csDescription = pSpawn->m_csValue; CCategory * pCategory = FindCategory(&m_olNPCs, pSpawn->m_csCategory); CSubsection * pSubsection = FindSubsection(pCategory, pSpawn->m_csSubsection); |
From: Philip E. <pes...@us...> - 2002-07-17 21:29:36
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv1569 Modified Files: AREA.CPP AREA.H drewsky.rc MISCTAB.CPP resource.h Log Message: Feature Request #563211. Areas and Rooms are now exported to axiscats.scp. Index: AREA.CPP =================================================================== RCS file: /cvsroot/sphere-axis/Axis/AREA.CPP,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** AREA.CPP 1 May 2002 23:42:39 -0000 1.4 --- AREA.CPP 17 Jul 2002 21:29:31 -0000 1.5 *************** *** 254,257 **** --- 254,267 ---- } + bool CArea::WriteBasic(CStdioFile &csfOutput) + { + CString csTemp; + csTemp.Format("[AREA %s]\n", this->m_csName); + csfOutput.WriteString(csTemp); + WriteTag("GROUP", csfOutput); + WriteTag("P", csfOutput); + return true; + } + void CArea::WriteTag(CString csTag, CStdioFile &csfOutput) { *************** *** 713,715 **** } return true; ! } \ No newline at end of file --- 723,735 ---- } return true; ! } ! ! bool CRoom::WriteBasic(CStdioFile &csfOutput) ! { ! CString csTemp; ! csTemp.Format("[ROOM %s]\n", this->m_csName); ! csfOutput.WriteString(csTemp); ! WriteTag("GROUP", csfOutput); ! WriteTag("P", csfOutput); ! return true; ! } Index: AREA.H =================================================================== RCS file: /cvsroot/sphere-axis/Axis/AREA.H,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** AREA.H 1 May 2002 23:42:39 -0000 1.5 --- AREA.H 17 Jul 2002 21:29:31 -0000 1.6 *************** *** 78,81 **** --- 78,82 ---- void ReadFromFile(CStdioFile &csfInput); bool Write(CStdioFile &csfOutput); + bool WriteBasic(CStdioFile &csfOutput); void Copy(CArea *pCopy); bool IsInside(CArea *pTestArea); *************** *** 89,92 **** --- 90,94 ---- { public: + bool WriteBasic(CStdioFile &csfOutput); CRoom(); virtual ~CRoom(); Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -r1.49 -r1.50 *** drewsky.rc 17 Jul 2002 20:08:00 -0000 1.49 --- drewsky.rc 17 Jul 2002 21:29:31 -0000 1.50 *************** *** 2355,2359 **** END ! IDD_AXISLOG_DLG DIALOG DISCARDABLE 0, 0, 497, 109 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Log" --- 2355,2359 ---- END ! IDD_DIALOG1 DIALOG DISCARDABLE 0, 0, 497, 109 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Log" *************** *** 2963,2967 **** END ! IDD_AXISLOG_DLG, DIALOG BEGIN LEFTMARGIN, 7 --- 2963,2967 ---- END ! IDD_DIALOG1, DIALOG BEGIN LEFTMARGIN, 7 Index: MISCTAB.CPP =================================================================== RCS file: /cvsroot/sphere-axis/Axis/MISCTAB.CPP,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** MISCTAB.CPP 17 Jul 2002 20:08:02 -0000 1.15 --- MISCTAB.CPP 17 Jul 2002 21:29:32 -0000 1.16 *************** *** 1167,1170 **** --- 1167,1197 ---- pObject->Write(csfOutput); } + // Write the areas + progress.m_csMessage.SetWindowText("Extracting Areas"); + progress.SetRange32(0, Main->m_pScripts->m_olAreas.GetCount() ); + progress.SetPos(0); + POSITION pos = Main->m_pScripts->m_olAreas.GetHeadPosition(); + while ( pos != NULL ) + { + CArea * pArea = (CArea *) Main->m_pScripts->m_olAreas.GetNext(pos); + if ( pArea != NULL ) + { + pArea->WriteBasic(csfOutput); + } + } + // Write the rooms + progress.m_csMessage.SetWindowText("Extracting Rooms"); + progress.SetRange32(0, Main->m_pScripts->m_olRooms.GetCount() ); + progress.SetPos(0); + pos = Main->m_pScripts->m_olRooms.GetHeadPosition(); + while ( pos != NULL ) + { + CRoom * pRoom = (CRoom *) Main->m_pScripts->m_olRooms.GetNext(pos); + if ( pRoom != NULL ) + { + pRoom->WriteBasic(csfOutput); + } + } + // Write the spells progress.m_csMessage.SetWindowText("Extracting Spells"); Index: resource.h =================================================================== RCS file: /cvsroot/sphere-axis/Axis/resource.h,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** resource.h 17 Jul 2002 20:08:03 -0000 1.31 --- resource.h 17 Jul 2002 21:29:32 -0000 1.32 *************** *** 89,92 **** --- 89,93 ---- #define IDD_ROOFING 234 #define IDD_AXISLOG_DLG 235 + #define IDD_DIALOG1 235 #define IDC_BUTTON1 1001 #define IDC_BLOCK 1001 |
From: Philip E. <pes...@us...> - 2002-07-17 20:08:11
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv32284 Modified Files: drewsky.rc MISCTAB.CPP MISCTAB.H resource.h Log Message: Feature Request #569559. Added a "Send" button on Misc tab to send sound effects to a client with .xsfx. Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -r1.48 -r1.49 *** drewsky.rc 17 Jul 2002 19:10:57 -0000 1.48 --- drewsky.rc 17 Jul 2002 20:08:00 -0000 1.49 *************** *** 571,575 **** CTEXT "0000",IDC_SFX_ID,216,67,24,10,SS_CENTERIMAGE | SS_SUNKEN ! PUSHBUTTON "Play Sound",IDC_PLAY_SFX,245,64,50,14 EDITTEXT IDC_YELL,12,88,228,14,ES_AUTOHSCROLL PUSHBUTTON "Broadcast It",IDC_YELLIT,245,88,50,14 --- 571,576 ---- CTEXT "0000",IDC_SFX_ID,216,67,24,10,SS_CENTERIMAGE | SS_SUNKEN ! PUSHBUTTON "Play",IDC_PLAY_SFX,245,64,23,14 ! PUSHBUTTON "Send",IDC_SEND_SFX,270,64,23,14 EDITTEXT IDC_YELL,12,88,228,14,ES_AUTOHSCROLL PUSHBUTTON "Broadcast It",IDC_YELLIT,245,88,50,14 Index: MISCTAB.CPP =================================================================== RCS file: /cvsroot/sphere-axis/Axis/MISCTAB.CPP,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** MISCTAB.CPP 29 May 2002 16:44:34 -0000 1.14 --- MISCTAB.CPP 17 Jul 2002 20:08:02 -0000 1.15 *************** *** 701,704 **** --- 701,705 ---- ON_BN_CLICKED(IDC_EXPORTCATS, OnExportcats) ON_BN_CLICKED(IDC_UNDERWEAR2, OnUnderwear2) + ON_BN_CLICKED(IDC_SEND_SFX, OnSendSfx) //}}AFX_MSG_MAP END_MESSAGE_MAP() *************** *** 1218,1220 **** --- 1219,1230 ---- { SendToUO(".underwear"); + } + + void CMiscTab::OnSendSfx() + { + CString csVal; + m_csSfxID.GetWindowText(csVal); + CString csCmd; + csCmd.Format(".xsfx %s", csVal); + SendToUO(csCmd); } Index: MISCTAB.H =================================================================== RCS file: /cvsroot/sphere-axis/Axis/MISCTAB.H,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** MISCTAB.H 29 May 2002 16:44:34 -0000 1.5 --- MISCTAB.H 17 Jul 2002 20:08:03 -0000 1.6 *************** *** 109,112 **** --- 109,113 ---- afx_msg void OnExportcats(); afx_msg void OnUnderwear2(); + afx_msg void OnSendSfx(); //}}AFX_MSG DECLARE_MESSAGE_MAP() Index: resource.h =================================================================== RCS file: /cvsroot/sphere-axis/Axis/resource.h,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** resource.h 17 Jul 2002 19:10:57 -0000 1.30 --- resource.h 17 Jul 2002 20:08:03 -0000 1.31 *************** *** 1153,1156 **** --- 1153,1157 ---- #define IDC_PLAY_SFX 1235 #define IDC_NUDGEUP 1236 + #define IDC_SEND_SFX 1236 #define IDC_NUDGEDOWN 1237 #define IDC_NUDGE 1237 |
From: Philip E. <pes...@us...> - 2002-07-17 19:11:00
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv12725 Modified Files: AxisLog.cpp Drewsky.cpp Drewsky.h drewsky.rc resource.h Added Files: AxisLogDlg.cpp AxisLogDlg.h Log Message: Added a new tab which will display the contents of the axis log file. --- NEW FILE: AxisLogDlg.cpp --- /* $Id: AxisLogDlg.cpp,v 1.1 2002/07/17 19:10:56 pesterle Exp $ ********************************************************************** * Copyright (C) Philip A. Esterle 1998-2002 * * This program is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * 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 * ********************************************************************** */ // AxisLogDlg.cpp : implementation file // #include "stdafx.h" #include "drewsky.h" #include "AxisLogDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CAxisLogDlg property page IMPLEMENT_DYNCREATE(CAxisLogDlg, CPropertyPage) CAxisLogDlg::CAxisLogDlg(CWnd* pParent /*=NULL*/) : CPropertyPage(CAxisLogDlg::IDD) { //{{AFX_DATA_INIT(CAxisLogDlg) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT m_bVisible = false; } void CAxisLogDlg::DoDataExchange(CDataExchange* pDX) { CPropertyPage::DoDataExchange(pDX); //{{AFX_DATA_MAP(CAxisLogDlg) DDX_Control(pDX, IDC_LOGWINDOW, m_ceLog); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CAxisLogDlg, CPropertyPage) //{{AFX_MSG_MAP(CAxisLogDlg) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CAxisLogDlg message handlers void CAxisLogDlg::AddText(CString csText) { if ( m_csText.GetLength() > 0 ) { char crlf[3] = { 0x0d, 0x0a, 0x00 }; m_csText += _T(crlf); } m_csText += csText; } BOOL CAxisLogDlg::OnSetActive() { m_ceLog.SetWindowText(m_csText); m_ceLog.SetSel(0, 0); return CPropertyPage::OnSetActive(); } --- NEW FILE: AxisLogDlg.h --- /* $Id: AxisLogDlg.h,v 1.1 2002/07/17 19:10:57 pesterle Exp $ ********************************************************************** * Copyright (C) Philip A. Esterle 1998-2002 * * This program is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * 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 * ********************************************************************** */ #if !defined(AFX_AXISLOGDLG_H__E4FC6116_99A5_11D6_95AB_00805FD91B8C__INCLUDED_) #define AFX_AXISLOGDLG_H__E4FC6116_99A5_11D6_95AB_00805FD91B8C__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // AxisLogDlg.h : header file // ///////////////////////////////////////////////////////////////////////////// // CAxisLogDlg dialog class CAxisLogDlg : public CPropertyPage { DECLARE_DYNCREATE(CAxisLogDlg) // Construction public: void AddText(CString csText); void SetVisible(bool bVisible) { m_bVisible = bVisible; } CAxisLogDlg(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CAxisLogDlg) enum { IDD = IDD_AXISLOG_DLG }; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAxisLogDlg) public: virtual BOOL OnSetActive(); protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CAxisLogDlg) // NOTE: the ClassWizard will add member functions here //}}AFX_MSG CEdit m_ceLog; CString m_csText; bool m_bVisible; DECLARE_MESSAGE_MAP() }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_AXISLOGDLG_H__E4FC6116_99A5_11D6_95AB_00805FD91B8C__INCLUDED_) Index: AxisLog.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/AxisLog.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** AxisLog.cpp 10 May 2002 19:23:49 -0000 1.5 --- AxisLog.cpp 17 Jul 2002 19:10:56 -0000 1.6 *************** *** 84,92 **** --- 84,96 ---- struct tm * lt = localtime(&now); fprintf( m_pLog, "%ld.%ld.%ld %02d:%02d:%02d ::", lt->tm_year + 1900, lt->tm_mon + 1, lt->tm_mday, lt->tm_hour, lt->tm_min, lt->tm_sec ); + CString csText; va_list args; va_start(args, format); + csText.FormatV(format, args); vfprintf(m_pLog, format, args); va_end(args); fprintf(m_pLog, "\n"); fflush(m_pLog); + if ( Main->m_pcppAxisLogTab ) + Main->m_pcppAxisLogTab->AddText(csText); } Index: Drewsky.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Drewsky.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** Drewsky.cpp 17 Jul 2002 17:05:17 -0000 1.15 --- Drewsky.cpp 17 Jul 2002 19:10:57 -0000 1.16 *************** *** 58,61 **** --- 58,62 ---- m_bKeepGoing = true; m_bNoScripts = false; + m_pcppAxisLogTab = NULL; } *************** *** 90,93 **** --- 91,96 ---- #endif + m_pcppAxisLogTab = new CAxisLogDlg; // Create this object as soon as possible, so we get all the log info. + m_log.Add("Starting %s, built %s", Main->GetVersionTitle(), Main->GetBuildTimestamp()); *************** *** 329,332 **** --- 332,336 ---- dlg.AddPage(m_pcppMiscTab); dlg.AddPage(m_pcppCommandTab); + dlg.AddPage(m_pcppAxisLogTab); if ( m_bAdminMode ) dlg.AddPage(m_pcppMacroDlg); *************** *** 345,348 **** --- 349,353 ---- } m_log.Add("Ready to display main window"); + m_pcppAxisLogTab->SetVisible(true); int nResponse = dlg.DoModal(); if (nResponse == IDOK) *************** *** 405,408 **** --- 410,415 ---- delete m_pcppMacroDlg; delete m_pcppCommandTab; + delete m_pcppAxisLogTab; + m_pcppAxisLogTab = NULL; // Need to do this so the log doesn't try to send to a bogus window when it closes. } Index: Drewsky.h =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Drewsky.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** Drewsky.h 20 May 2002 19:14:43 -0000 1.11 --- Drewsky.h 17 Jul 2002 19:10:57 -0000 1.12 *************** *** 53,57 **** #include "RemoteConnection.h" #include "ChooseProfileDlg.h" ! ///////////////////////////////////////////////////////////////////////////// --- 53,57 ---- #include "RemoteConnection.h" #include "ChooseProfileDlg.h" ! #include "AxisLogDlg.h" ///////////////////////////////////////////////////////////////////////////// *************** *** 132,135 **** --- 132,136 ---- CMacroDlg * m_pcppMacroDlg; CCommandTab * m_pcppCommandTab; + CAxisLogDlg * m_pcppAxisLogTab; // Overrides Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -r1.47 -r1.48 *** drewsky.rc 1 Jun 2002 02:55:48 -0000 1.47 --- drewsky.rc 17 Jul 2002 19:10:57 -0000 1.48 *************** *** 2354,2357 **** --- 2354,2366 ---- END + IDD_AXISLOG_DLG DIALOG DISCARDABLE 0, 0, 497, 109 + STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU + CAPTION "Log" + FONT 8, "MS Sans Serif" + BEGIN + EDITTEXT IDC_LOGWINDOW,7,7,483,95,ES_MULTILINE | ES_READONLY | + WS_VSCROLL | WS_HSCROLL + END + #ifndef _MAC *************** *** 2951,2954 **** --- 2960,2971 ---- HORZGUIDE, 153 HORZGUIDE, 173 + END + + IDD_AXISLOG_DLG, DIALOG + BEGIN + LEFTMARGIN, 7 + RIGHTMARGIN, 490 + TOPMARGIN, 7 + BOTTOMMARGIN, 102 END END Index: resource.h =================================================================== RCS file: /cvsroot/sphere-axis/Axis/resource.h,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -r1.29 -r1.30 *** resource.h 29 May 2002 19:14:59 -0000 1.29 --- resource.h 17 Jul 2002 19:10:57 -0000 1.30 *************** *** 88,91 **** --- 88,92 ---- #define IDD_ADDITIONAL_SETTINGS 233 #define IDD_ROOFING 234 + #define IDD_AXISLOG_DLG 235 #define IDC_BUTTON1 1001 #define IDC_BLOCK 1001 *************** *** 635,638 **** --- 636,640 ---- #define IDC_LICENSE 1059 #define IDC_X1 1059 + #define IDC_LOGWINDOW 1059 #define IDC_RADIO3 1060 #define IDC_EDIT2 1060 *************** *** 1350,1354 **** #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS ! #define _APS_NEXT_RESOURCE_VALUE 235 #define _APS_NEXT_COMMAND_VALUE 32809 #define _APS_NEXT_CONTROL_VALUE 1415 --- 1352,1356 ---- #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS ! #define _APS_NEXT_RESOURCE_VALUE 236 #define _APS_NEXT_COMMAND_VALUE 32809 #define _APS_NEXT_CONTROL_VALUE 1415 |
From: Philip E. <pes...@us...> - 2002-07-17 17:05:20
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv29532 Modified Files: Drewsky.cpp Log Message: If no registry settings exist, Axis will open the Configuration dialog at launch. Index: Drewsky.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Drewsky.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** Drewsky.cpp 20 May 2002 19:14:43 -0000 1.14 --- Drewsky.cpp 17 Jul 2002 17:05:17 -0000 1.15 *************** *** 29,32 **** --- 29,33 ---- #include "drewsky.h" #include "DrewskyPS.h" + #include "AdditionalSettingsDlg.h" *************** *** 91,94 **** --- 92,104 ---- m_log.Add("Starting %s, built %s", Main->GetVersionTitle(), Main->GetBuildTimestamp()); + // Check to see if we have an existing registry section for Axis + HKEY hKey; + if ( RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Menasoft\\GM Tools", 0, KEY_READ, &hKey) != ERROR_SUCCESS ) + { + CAdditionalSettingsDlg dlg; + if( dlg.DoModal() != IDOK) + return FALSE; + } + RegCloseKey(hKey); // Find the path to the UO files m_pRConsole = NULL; *************** *** 149,153 **** m_log.Add("Retrieving registry settings"); // Check for multiple profiles - HKEY hKey; LONG lStatus = RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\Menasoft\\GM Tools\\Remote Profiles", 0, KEY_ALL_ACCESS, &hKey); int iProfiles = 0; --- 159,162 ---- |
From: Philip E. <pes...@us...> - 2002-07-12 15:15:36
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv5319 Modified Files: traveltab.cpp Log Message: setting mapplane to 2 will change the travel map to Ilshenar. Index: traveltab.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/traveltab.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** traveltab.cpp 29 May 2002 16:44:34 -0000 1.16 --- traveltab.cpp 12 Jul 2002 15:15:32 -0000 1.17 *************** *** 1142,1145 **** --- 1142,1151 ---- void CTravelTab::Recenter(short x, short y) { + CString csPlane; + m_ceMapPlane.GetWindowText(csPlane); + if ( atoi(csPlane) == 2 ) + m_TravelMap.SetMapFile(2); + else + m_TravelMap.SetMapFile(0); m_TravelMap.RemoveDrawObjectAt(m_crosshairIndex); m_crosshairIndex = m_TravelMap.AddDrawObject(x, y, 1, 3, 0x00FFFFFF); |
From: Philip E. <pes...@us...> - 2002-07-03 00:58:29
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv11659 Modified Files: rooftiles.cfg Log Message: Additional sections added by Azrael. Index: rooftiles.cfg =================================================================== RCS file: /cvsroot/sphere-axis/Axis/rooftiles.cfg,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** rooftiles.cfg 29 May 2002 16:44:34 -0000 1.2 --- rooftiles.cfg 3 Jul 2002 00:58:26 -0000 1.3 *************** *** 48,54 **** --- 48,169 ---- # # + # The original version of this file was created by Adron + # Additional sections added by Azrael + [Tile Roof] + dcd99dcd 5b3 + ecdedecd 5b4 + dcededce 5b5 + a2ac29ca 5b6 + ac92ca2a 5b7 + 9cac2a2a 5b8 + a2a2cac9 5b9 + 9c9cc9c9 5ba + 9c9cc999 5bb + 999cc9c9 5bc + 9c9c99c9 5bd + 9c99c9c9 5be + d9dccd9d 5bf + eeeccddd 5c0 + dddcceee 5c1 + dcc9cdc1 5b3 + dc19cdcc 5b3 + 1cdc9ccd 5b3 + ccdc91cd 5b3 + cc1ccd9d 5bf + 1ccccd9d 5bf + d9dcccc1 5bf + d9dcc1cc 5bf + + [Stone Roof Tile] + dcd99dcd 193e + ecdedecd 1939 + dcededce 193b + d9dccd9d 193d + eeeccddd 193a + dddcceee 193c + + [Palm Frond] + dcd99dcd 590 + ecdedecd 58f + dcededce 591 + a2ac29ca 586 + ac92ca2a 587 + 9cac2a2a 588 + a2a2cac9 589 + 9c9cc9c9 58a + 9c9cc999 58b + 999cc9c9 58c + 9c9c99c9 58d + 9c99c9c9 58e + d9dccd9d 593 + eeeccddd 592 + dddcceee 594 + + + dcc9cdc1 590 + dc19cdcc 590 + 1cdc9ccd 590 + ccdc91cd 590 + cc1ccd9d 593 + 1ccccd9d 593 + d9dcccc1 593 + d9dcc1cc 593 + + [Log Roof] + dcd99dcd 5f0 + ecdedecd 5f1 + dcededce 5f2 + a2ac29ca 5f3 + ac92ca2a 5f4 + 9cac2a2a 5f5 + a2a2cac9 5f6 + 9c9cc9c9 5f7 + 9c9cc999 5f8 + 999cc9c9 5f9 + 9c9c99c9 5fa + 9c99c9c9 5fb + d9dccd9d 5fc + eeeccddd 5fd + dddcceee 5fe + + + dcc9cdc1 5f0 + dc19cdcc 5f0 + 1cdc9ccd 5f0 + ccdc91cd 5f0 + cc1ccd9d 5fc + 1ccccd9d 5fc + d9dcccc1 5fc + d9dcc1cc 5fc + + [Slate Roof 2] + dcd99dcd 595 + ecdedecd 596 + dcededce 597 + a2ac29ca 598 + ac92ca2a 599 + 9cac2a2a 59a + a2a2cac9 59b + 9c9cc9c9 59c + 9c9cc999 59d + 999cc9c9 59e + 9c9c99c9 59f + 9c99c9c9 5a0 + d9dccd9d 5a1 + eeeccddd 5a2 + dddcceee 5a3 + + + dcc9cdc1 595 + dc19cdcc 595 + 1cdc9ccd 595 + ccdc91cd 595 + cc1ccd9d 5a1 + 1ccccd9d 5a1 + d9dcccc1 5a1 + d9dcc1cc 5a1 [Thatch Roof] |
From: Philip E. <pes...@us...> - 2002-06-01 06:52:16
|
Update of /cvsroot/sphere-axis/UOMap In directory usw-pr-cvs1:/tmp/cvs-serv15171 Modified Files: UOMap.dsw UOMap.rc Log Message: final changes for 1.2.1 Index: UOMap.dsw =================================================================== RCS file: /cvsroot/sphere-axis/UOMap/UOMap.dsw,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** UOMap.dsw 27 May 2002 07:57:04 -0000 1.1 --- UOMap.dsw 1 Jun 2002 06:52:13 -0000 1.2 *************** *** 4,11 **** ############################################################################### ! Project: "UOMap"=".\UOMap.dsp" - Package Owner=<4> Package=<5> {{{ }}} --- 4,15 ---- ############################################################################### ! Project: "UOMap"=.\UOMap.dsp - Package Owner=<4> Package=<5> {{{ + begin source code control + "$/UOMap", FNAAAAAA + . + end source code control }}} Index: UOMap.rc =================================================================== RCS file: /cvsroot/sphere-axis/UOMap/UOMap.rc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** UOMap.rc 30 May 2002 05:49:10 -0000 1.9 --- UOMap.rc 1 Jun 2002 06:52:13 -0000 1.10 *************** *** 1,4 **** //Microsoft Developer Studio generated resource script. ! // Last compiled 5/29/2002 at 23:48:26 #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // #include "resource.h" *************** *** 55,60 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,0,5 ! PRODUCTVERSION 1,2,0,5 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,1,0 ! PRODUCTVERSION 1,2,1,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 74,78 **** VALUE "CompanyName", "MCI WorldCom\0" VALUE "FileDescription", "UOMap ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 0, 5\0" VALUE "InternalName", "UOMap\0" VALUE "LegalCopyright", "Copyright (C) 2001\0" --- 74,78 ---- VALUE "CompanyName", "MCI WorldCom\0" VALUE "FileDescription", "UOMap ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 1, 0\0" VALUE "InternalName", "UOMap\0" VALUE "LegalCopyright", "Copyright (C) 2001\0" *************** *** 82,86 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOMap ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 0, 5\0" VALUE "SpecialBuild", "\0" END --- 82,86 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOMap ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 1, 0\0" VALUE "SpecialBuild", "\0" END |
From: Philip E. <pes...@us...> - 2002-06-01 06:51:34
|
Update of /cvsroot/sphere-axis/UOArt In directory usw-pr-cvs1:/tmp/cvs-serv15023 Modified Files: resource.h UOArt.rc UOArt.opt Log Message: final changes for 1.2.1 Index: resource.h =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/resource.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** resource.h 1 May 2002 03:42:32 -0000 1.2 --- resource.h 1 Jun 2002 06:51:29 -0000 1.3 *************** *** 1,25 **** - /* - $Id$ - - ********************************************************************** - * Copyright (C) Philip A. Esterle 2000-2002 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of version 2 of the GNU General Public License as - * published by the Free Software Foundation. - * - * 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 - * - ********************************************************************** - - */ - //{{NO_DEPENDENCIES}} // Microsoft Developer Studio generated include file. --- 1,2 ---- Index: UOArt.rc =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/UOArt.rc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** UOArt.rc 30 May 2002 03:31:01 -0000 1.10 --- UOArt.rc 1 Jun 2002 06:51:29 -0000 1.11 *************** *** 1,50 **** - /* - // Last compiled 5/29/2002 at 21:29:11 - - ********************************************************************** - * Copyright (C) Philip A. Esterle 2000-2002 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of version 2 of the GNU General Public License as - * published by the Free Software Foundation. - * - * 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 - * - ********************************************************************** - - */ - - /* - $Id$ - - ********************************************************************** - * Copyright (C) Philip A. Esterle 2000-2002 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of version 2 of the GNU General Public License as - * published by the Free Software Foundation. - * - * 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 - * - ********************************************************************** - - */ - //Microsoft Developer Studio generated resource script. ! // Last compiled 5/10/2002 at 23:15:3 #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // #include "resource.h" *************** *** 101,106 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,0,7 ! PRODUCTVERSION 1,2,0,7 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,1,0 ! PRODUCTVERSION 1,2,1,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 120,124 **** VALUE "CompanyName", "\0" VALUE "FileDescription", "UOArt ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 0, 7\0" VALUE "InternalName", "UOArt\0" VALUE "LegalCopyright", "Copyright (C) 2000, 2001\0" --- 74,78 ---- VALUE "CompanyName", "\0" VALUE "FileDescription", "UOArt ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 1, 0\0" VALUE "InternalName", "UOArt\0" VALUE "LegalCopyright", "Copyright (C) 2000, 2001\0" *************** *** 128,132 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOArt ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 0, 7\0" VALUE "SpecialBuild", "\0" END --- 82,86 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOArt ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 1, 0\0" VALUE "SpecialBuild", "\0" END Index: UOArt.opt =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/UOArt.opt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 Binary files /tmp/cvsC5i0lh and /tmp/cvsqi5ODq differ |
From: Philip E. <pes...@us...> - 2002-06-01 06:51:11
|
Update of /cvsroot/sphere-axis/axissvr In directory usw-pr-cvs1:/tmp/cvs-serv14949 Modified Files: gwhogsvr.cpp messages.h messages.rc Log Message: final changes for 0.13.2 Index: gwhogsvr.cpp =================================================================== RCS file: /cvsroot/sphere-axis/axissvr/gwhogsvr.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** gwhogsvr.cpp 21 May 2002 17:02:17 -0000 1.12 --- gwhogsvr.cpp 1 Jun 2002 06:51:05 -0000 1.13 *************** *** 39,43 **** #endif ! #define SVR_VERSION "0.13.0.2" #ifdef WIN32 #define SVR_PLATFORM "Win32" --- 39,43 ---- #endif ! #define SVR_VERSION "0.13.2.0" #ifdef WIN32 #define SVR_PLATFORM "Win32" Index: messages.h =================================================================== RCS file: /cvsroot/sphere-axis/axissvr/messages.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** messages.h 1 May 2002 03:34:06 -0000 1.3 --- messages.h 1 Jun 2002 06:51:05 -0000 1.4 *************** *** 1,25 **** - /* - $Id$ - - ********************************************************************** - * Copyright (C) Philip A. Esterle 1998-2002 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of version 2 of the GNU General Public License as - * published by the Free Software Foundation. - * - * 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 - * - ********************************************************************** - - */ - // // Values are 32 bit values layed out as follows: --- 1,2 ---- Index: messages.rc =================================================================== RCS file: /cvsroot/sphere-axis/axissvr/messages.rc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** messages.rc 1 May 2002 03:34:06 -0000 1.3 --- messages.rc 1 Jun 2002 06:51:05 -0000 1.4 *************** *** 1,25 **** - /* - $Id$ - - ********************************************************************** - * Copyright (C) Philip A. Esterle 1998-2002 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of version 2 of the GNU General Public License as - * published by the Free Software Foundation. - * - * 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 - * - ********************************************************************** - - */ - LANGUAGE 0x9,0x1 1 11 MSG00001.bin --- 1,2 ---- |
From: Philip E. <pes...@us...> - 2002-06-01 02:55:54
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv29140 Modified Files: Drewsky.dsp drewsky.rc install.bat Added Files: axis.html Removed Files: Axis.txt Log Message: final changes for 0.13.2 --- NEW FILE: axis.html --- <html> <head> <title>Axis release notes</title> <style> <!-- font { font-family: Tahoma,Arial,sans-serif; font-size: 10pt } --> </style> </head> <body bgcolor="FFFFFF" fgcolor="000000"> <!-- $Id: axis.html,v 1.1 2002/06/01 02:55:48 pesterle Exp $ ********************************************************************** * Copyright (C) Philip A. Esterle 1998-2002 * * This program is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * 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 * ********************************************************************** */ --> <table border="0" width="100%"> <td width="33%" align="left"> <a href="http://sphere-axis.sourceforge.net"><img border="0" src="http://sphere-axis.sourceforge.net/banner.gif"></a> </td> <td width="34%"> </td> <td width="33%" align="right"> <A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=52975&type=7" width="210" height="62" border="0" alt="SourceForge Logo"></A> </td> </table> <hr> <big><b>Release Notes for the Axis GM Tool</b></big><br> <b>Changes in version 0.13.2 ( 31 May 2002 )</b><br> · Fixed a crash bug when uploading scripts in the GUI script editor.<br> · Added a combo box containing internal hue names to the Color Selection dialog. Also, these internal names can be exported as DEFS.<br> · Added Adron's roofing system. See roofing.txt for more information.<br> · The remote console dialog and tray icon now show the profile being used.<br> · DEFS are listed instead of IDs (if defined) in the Item and Spawn tabs.<br> · The Account Manager window is now modeless, minimizable, and resizeable.<br> · Axissvr should handle paths in the ALLOWEDPATHS directive better. Specify the complete relative paths (e.g. scripts:scripts\test:etc)<br> · Changes to the way profiles are loaded. Multiple local profiles can be specified, and local profiles can use remote consoles and remote spawnpoints.<br> · Fixed bug in Remote Console window where doing a pause/resync after disconnecting would automatically reconnect to the console without prompting for the username/password.<br> · Tweaked the remote console a bit. Errors should be more visible, and hopefully more useful.<br> · Fixed a crash bug that occurs when the default client is in a directory that doesn't contain the mul files.<br> · Changed the version naming scheme. Versions prior to what would have been 0.13b (now 0.13.2) are now numbered 0.13.1.n, where n is a build number. Version numbers can be viewed in the About Axis box, and aren't related to CVS revisions.<br> · Fixed a possible issue when selecting spawn groups from the spawn tab.<br> · Non-resource scripts will no longer be downloaded from remote servers.<br> · Item attributes will now be cleared properly in the Item Tweak tab.<br> · Fixed a crash bug when Axis is reading remote scripts AND non-resource files.<br> · Fixed the checksum algorithm to ignore CR and LF chars, since different OSes end lines differently, and if you don't convert for your filesystem, the checksums will be different.<br> · Minor UI tweaks (details can be found in patch tracker #553591, submitted by Piotr Banasik).<br> · Fixed bug where blockIP and UnblockIP weren't working with newer Sphere versions.<br> · Checked to make sure hues were loaded before trying to draw the palette bitmap<br> · Removed some extraneous log messages, and added messages for checksum failures<br> · Changed the text on the buttons in the Travel Tab<br> · Put in messages to indicate failure loading hues and verdata<br> · Exporting script objects now also exports Spells and Skills<br> · Allowed for users to re-categorize the script objects on demand from the settings tab (old functionality was broken).<br> · Fixed bug with map editor where map display wasn't being updated when the selection changed.<br> · Axis now will always present the option to load no scripts at startup.<br> · You now have the option to save your account information on the remote console login screen. (sorry Syrin)<br> · The color preview window now uses the UOArt control.<br> <br> <b>Changes in version 0.13a ( 18 August 2001 )</b><br> · Fixed the bugged remote console login window.<br> · Help on the menu in the static tool now actually invokes help!<br> · Added a nuke button to the Item tab.<br> · Fixed a bug in the color palette window where the stored art index was being used for the color value as well.<br> · The z values used in the travel section of Axis should work correctly now (i.e. Axis won't try to determine the map height if you've specified a z coordinate in the listed entries).<br> <br> <b>Changes in version 0.13 ( 2 August 2001 )</b><br> · Axis Static Tool<br> · Fixed the problem with the remote Account Manager.<br> · Fixed a problem with some absolute path stuff on remote connections.<br> · Now using the UOMap and UOArt ActiveX controls.<br> · TravelTab map center and zoom level now saved in the registry.<br> · If Axis can't connect to Axissvr, it will read the most recent updates that it has saved.<br> · The raw text editor should work again through remote connections.<br> · Axis now ensures that broadcasts and commands sent through the remote console aren't too long. (thx Wolverana)<br> · Fixed a problem where custom locations weren't being read or saved correctly. (thx Wolverana, Horibu, et. al.)<br> · Find by ID in spawn and item tabs now works. (thx Pio, Wolverana)<br> · Added support for the new remote console login (as of Sphere 0.99f).<br> <br> <b>Changes in version 0.12f ( March - May 2001 )</b><br> · Axissvr window displays text again<br> · Timeout values now get saved and read correctly for remote profiles.<br> · Axis should only try to connect to Axissvr once each time it goes to load files.<br> · Fixed a few minor annoyances with the File Progress window.<br> · Right-clicking in the Radar Map on the Travel Tab now allows you to specify the coordinates to re-center to.<br> · Added support for an axiscats.scp file, which can be extracted from the Misc tab, and distributed to your remote GMs. (thx Rylix)<br> · Axis will now load all scripts in directories specified in the RESOURCES table of spheretables.scp. (thx Allmight, et. al.)<br> · Axis shouldn't be saving files as "gray*" instead of "sphere*.scp" any longer (thx Wolverana)<br> · Several changes to the color palette window, including a preview area. (thx Janelle)<br> · Spawnpoints displayed on the world map will now get updated correctly when the 'Reload Spawns' button is used. (thx SickLab)<br> · All spawnpoints should now be loaded, not just spawn groups. (thx SickLab)<br> · Added Find Previous support to the Item and Spawn tabs. F3 and Shift + F3 do find next and find previous. (thx Daegon)<br> · Axissvr should now use the correct exe name when attempting to restart the Sphere server.<br> · Added a button on the Travel tab to set the MoreP on an item to the coords specified (thx Fearan). Also changed the worldmap button to an icon.<br> · Updated the flags and attributes in the Flags and Brains tab and Item Tweak tab. (thx Atreiu).<br> · Supports SphereClient ( finally! =p )<br> · You can now change the default client in the launcher tab to something other than the UO Installation. Keep in mind that this change will also affect where Axis loads the art and other client files from. (Khybel, et al)<br> · Names for spawn information for 0.51 should now be read correctly. (thx Wolverana)<br> · spheretables.scp no longer needs to be in the same directory as sphere.ini.<br> · absolute paths should now work in the RESOURCES section of spheretables.scp<br> <br> <b>Changes in version 0.12e (February 2001)</b><br> · Axis should now handle absolute paths in the resources section correctly.<br> · Values changed on the settings tab are now automatically put into the registry...no need for a "Save Settings" button<br> · Remote Console now allows for any command to be sent directly to the remote server<br> · Travel Tab now supports mapplane travel.<br> · Custom entries in the travel tab can now be edited.<br> · Users can now cancel out of the Choose Profile box and Axis will close<br> · Added an option in the Choose Profile box to allow users to load Axis without loading any scripts.<br> · More fixes for reading spawns in the 53/54/55 worldsave format. (thx Almight)<br> · Parameters on the Item and Spawn tabs are now persistent.<br> · The Remote Console window now supports local logging.<br> · Axis now loads hues from the verdata.mul file in addition to the hues.mul file.<br> <br> <b>Changes in version 0.12d ( November/December/January 2000/2001 )</b><br> · Support for all basic ASCII characters in client passwords now included (thx Daegon)<br> · Streamlined the spawn initialization process. Uses ".act.blah XXX" instead of ".set blah XXX" and ".last" (thx Menace)<br> · Changed the format of the remote console window to support more than 24 lines of text at a time. Now, everything that you receive during a session will be viewable. (thx Syrin)<br> · Fixed a timeout problem when connecting to Axissvr...was only waiting 0.5 seconds for responses.<br> · Fixed a problem where some settings weren't getting saved properly.<br> · Fixed a problem where not all script files were downloaded from the remote server.<br> · Removed the leading '0' that Axis was inserting on the creation of NPCs.<br> · Slightly new look to the Remote Console window. It can now be minimized and resized (thx Wolverana)<br> · Fixed a problem where the Alchemy skill was missing from the skill list on the Flags & Brains tab<br> · Added some updates to the documentation, thanks to Syrin. =)<br> · Fixed a small memory leak issue that applies only to the .53+ script format. Previously, webpage script objects weren't getting cleaned up on exit.<br> · Axis should no longer load spheretables.scp more than one time (fixes the infinite loop problem if spheretables.scp is listed in your RESOURCES section).<br> · Spawnpoints should now be loaded properly locally and through Axissvr.<br> · Paths in the RESOURCES section should now be handled properly.<br> · Axis will revert to the default screen position if the last saved position is beyond the bounds of the current desktop geometry.<br> · Axissvr now recognizes text strings in the PLEVEL field, in addition to numerics. This is to support 0.54.<br> · Put in some exception handling for the script reading functions...Axis shouldn't crash while loading scripts any more.<br> · Templates should appear in the item lists correctly again. Sorry about that. (.51 scripts only)<br> · Account editor works for remote profiles again. Also added support for PLEVEL strings.<br> <br> <b>Changes in version 0.12c ( 19 October 2000 )</b><br> · Cleaned up the "Find" feature for items and NPCs (thx RWRZ and Wolverana)<br> · Added logging to Axis. If you experience crashes or other problems, click the "About Axis" button on the Settings tab, and then click the "Support" button. You'll then be able to send your last two Axis log files directly to me. Make sure you describe the problem, so I might have an idea of what to look for.<br> · If you have any remote profiles, Axis will ask you at startup which profile (including local) you wish to use for the current session. (thx Wolverana)<br> <br> <b>Changes in version 0.12b ( 9 October 2000 )</b><br> · Fixed a problem in the Misc tab where Spells were not loaded if the scripts had "SPELL" instead of "Spell" in the definition. (thx Syrin and Wolverana)<br> · Fixed a problem in the travel tab where spawnpoints were taking exorbidant amounts of time to load. It appeared that the color map was being loaded rather than spawnpoints. (thx Izzy and Thadius FCT).<br> · Added a "Reload Spawns" button to the travel tab.<br> · Fixed a bug in the Raw Text editor where filenames weren't being interpreted correctly when using remote scripts. (thx AAU)<br> · Fixed a crash bug when displaying tall items in the item viewer without the "Scale tall items" option checked. (thx Veldurn)<br> <br> <b>Changes in version 0.12a ( 5 October 2000 )</b><br> · Fixed a bug where files weren't getting saved with the correct name with the GUI script editor remotely using pre 0.53 scripts.<br> · Fixed some formatting issues associated with the uo.cfg file created by the launcher tab.<br> · Fixed a bug where new accounts could not be created if the new name was contained in an existing account name.<br> · The world map will now get reloaded when the Reload Scripts button is clicked if the option to display spawnpoints is enabled.<br> · Spells in the Misc tab now should have the correct index<br> <br> <b>Changes in version 0.12 ( July - September 2000 )</b><br> · Support for the 0.53 script formats.<br> · Reduced memory usage by roughly 50%.<br> · New integrated item/template/NPC editor.<br> · Raw script editing now works through Axis server.<br> · Raw script editor reads/writes files much faster now.<br> · Any script that is changed by Axis/Axisserver gets backed up before a save.<br> · Triggers, Spells, Skills, Skillclasses, and Names added to the integrated editor.<br> · Server configuration added to the integrated editor.<br> · F1 activates the Help file again. The Help file isn't quite up to snuff yet though.<br> · More fixes for Axis Server have been included, including the NT Service bug.<br> <br> <b>Changes in version 0.11a (29 June 2000 )</b><br> · Found and fixed a memory leak when using the Travel Tab.<br> · Minor fixes to the template editor.<br> · Added an item display to the Item Editor.<br> · Spawnpoints are now shown on the World Map in addition to the Radar Map.<br> · Colors are now applied to the graphics in the item and NPC editors.<br> · Bugfixes associated with saving custom items.<br> · Various assorted code cleanup.<br> <br> <b>Changes in version 0.11 ( 16 June 2000 )</b><br> · Multiple changes to the way scripts were loaded.<br> · Changes to the NPC editor, item editor, and other table editors.<br> · Various bug fixes.<br> <br> <b>Changes in version 0.10 ( 10 May 2000 )</b><br> · Name change.<br> · Now supporting Sphere file naming convention.<br> <br> <b>Changes in version 0.9f ( 26 April 2000 )</b><br> · HOG item tags located after trigger definitions are now read correctly.<br> · A few changes in the item generator for listing the templates...still need to work on the editor a bit.<br> · HOG will now read the client path correctly if someone has changed the registry values to be something other than client.exe<br> · The account editor will send the correct command to the client when deleting accounts now.<br> <br> <b>Changes in version 0.9e ( 18 April 2000 )</b><br> · Fixed a bug where the tusitem.scp and tuschar.scp files were getting read from the wrong directory in certain conditions.<br> · Added a skill menu editor.<br> · NPCs and Items should get written correctly now, instead of having their tags in alphabetical order.<br> · The send button in the travel tab will now use the coordinates from the map rather than the current selection.<br> · When saves fail, HoG now gives an option to rename the existing file and attempt to forcefully overwrite the existing files.<br> · Fixed a bug in hogsvr where it would try to retrieve the ini file from the script directory.<br> · HoG should be able to handle cases where remote files have 0 length.<br> · Added support for the additional item types that have been added to TUS recently.<br> · Fixed some bugs in the template editor.<br> · The music list on the settings tab should now be displayed correctly.<br> <br> <b>Changes in version 0.9d ( 24 March 2000 )</b><br> · All three command modes are now available, and can be specified on the Settings tab.<br> · New items should have the correct IDs now (i.e. 620d instead of 0000620d).<br> · Debug Flags and Log Mask which are in the tus.ini as hex values should now be read correctly.<br> · When files are not found, the message box should give the full path of the file HoG was trying to open.<br> · HoG will now make a few attempts to move files during saves in case the server doesn't pause before the initial move attempt.<br> · The locations for the travel tab that used to reside in tusmap.scp are now read from the file hoglocs.scp (included in the zip).<br> · The tusname.scp file should now be retrieved when opening the spawn editor.<br> · Fixed a bounds overrun problem that was causing crashes in hogsvr when loading spawn information.<br> <br> <b>Changes in version 0.9c ( 22 March 2000 )</b><br> · The setting for disabling NPC animations is now accurately displayed on the Settings tab.<br> · Changed the command strings to use a '.' instead of a '/'. Also put in a toggle on the settings tab to use the '/' format.<br> · Integer settings in the tus.ini file are now read as strings so that expressions such as 8*60*60 can be used.<br> · Cleaned up a little bit of the spawn loading code in hogsvr. Hopefully this will reduce the crash frequency.<br> <br> <b>Changes in version 0.9b ( 19 March 2000 )</b><br> · Bugfixes in hogsvr. Spawnpoints should be read correctly if there is a commented WORLDSAVE line.<br> · Hogsvr should read the account file correctly now without putting the extra '\' character in there.<br> · Hogsvr crash when restarting TUS server fixed.<br> · Spawnpoint information is now periodically read by hogsvr, rather than on-demand. Should speed up a bit.<br> · Hogsvr will now store its logfiles in the LOG directory.<br> · Hogsvr can now run in read-only mode. See the config file for details.<br> · Weighfix command changed to use the XWeightfix syntax.<br> · NPC Animations can now be disabled.<br> · HoG now uses the SCPFILES from tus.ini when run locally.<br> · Added a space to the commands send to the client to accomodate the 1.26.4i patch from OSI.<br> <br> <b>Changes in version 0.9a (2 March 2000)</b><br> · The window position should be saved correctly. (thx Stein)<br> · Crash bug when editing existing NPCs has been fixed. (thx Batlin)<br> · Bugs with creating new NPCs should be fixed. (thx Batlin)<br> · A bug dealing with custom Item/NPC numbers and NOINDEX entries is now fixed. (thx Daegon)<br> · Seers and Counselors PLEVELS have been fixed in the account editor. (thx Sir Parish)<br> · hogsvr should now recognize the ACCTFILES and SCPFILES tags. (thx Grimtooth)<br> <br> <b>Changes in version 0.9 ( January-February 2000 )</b><br> · HoG now recognizes triggers which are inside of the item scripts.<br> · Added a trigger editor. Can be used with the trigger file or with individual items.<br> · HoG now remembers where its last position was.<br> · Updated the INI tags in the server configuration tool.<br> · Changed XSkin to OSkin on the player tweak tab.<br> · Changed the /setpriv command to /privset.<br> · Items with colours should be displayed correctly in the itemgen tab.<br> · Color selections can now be done visually with a palette.<br> · The color palette is accessible from the item tweak tab.<br> · Selected NPCs in the spawn generator tab are now displayed with color and animation. (Humans are naked though).<br> · Added a custom button page.<br> · Hogsvr has been redesigned. HoG v0.9 MUST communicate with hogsvr v0.9 and vice versa.<br> · HoG now will always try to read the *2.scp files.<br> · The launcher tab now allows you to specify which client to use. (thx Ravon and Garion)<br> · The INI editor no longer wipes out the comments in the file.<br> · Added a search feature in the spawn and item generator tabs. F3 will repeat the search.<br> · Added a raw text editor for use with any local file. Remote files are not yet supported.<br> · Multiple remote profiles are now supported. (thx Kythorn)<br> · HoG is now able to start the TUS server.<br> · Added an account editor.<br> · Added a potion editor.<br> · The server configuration tool now recognizes the new webpage format and allows for defining multiple pages.<br> · The 'lock-down' option on the item generator page is now remembered when HoG starts.<br> · File download/upload progress is now displayed when connecting to hogsvr.<br> · hog.exe now is static-linked to the MFC libraries, so there is no dependence on the MFC DLL files.<br> · Alot of other assorted code cleanup.<br> <br> <b>Changes in version 0.8m ( 28 December 1999 )</b><br> · Basic cleanup of some of the screens. Hog should be a little bit shorter now.<br> · More fixes for the map editor. Entries should not show up twice now, and flags get written for rooms.<br> · All *.rmt files will get deleted when HoG exits.<br> <br> <b>Changes in version 0.8l ( 26 December 1999 )</b><br> · Several more fixes to the map editor...it should work correctly now.<br> <br> <b>Changes in version 0.8k ( 25 December 1999 )</b><br> · Fixed map editor so that text fields get saved (thx ROK).<br> · The travel guide will read map locs from both tusmap and tusmap2 now.<br> · The help file has been updated. Many thanks to Bones!<br> · Fixed a crash bug in the map editor.<br> <br> <b>Changes in version 0.8j ( 17-22 December 1999 )</b><br> · Redesigned the map editor. tusmap2.scp is now supported.<br> · Fixed a crash bug when HoG is unable to connect to the server while saving.<br> · Server configuration should save correctly through hogsvr now.<br> · Travel to map defined locations should go to the correct z level now.<br> <br> <b>Changes in version 0.8i ( 16 December 1999 )</b><br> · Added support for a few more INI tags. This should take care of all of them.<br> · The timestamp in the tus.ini file will now be correct. (thx Michael Brannin)<br> · Added a 'find' function on the spawn list. (thx Rhodan, et al)<br> <br> <b>Changes in version 0.8h ( 13-15 December 1999 )</b><br> · The ID tag for new items should get set correctly now.<br> · New item types added to the Item Tweak tab.<br> · All custom items should be read now, not just every other one.<br> · Map Script editor currently disabled until it can be completely rewritten.<br> · Server Configuration window has been completely rewritten.<br> <br> <b>Changes in version 0.8g ( 11 December 1999 )</b><br> · Revamped the map script editor. Should support the new format of tusmap.scp<br> · Cosmetic changes to some of the error messages. Should help with some of the FAQs.<br> · Custom NPCs and Items pasted in from the Custom Scripts web site should now work<br> without additional tweaking.<br> · Probably a few more things that I just can't think of off the top of my head.<br> <br> <b>Changes in version 0.8f ( 2-3 November 1999 )</b><br> · Fixed a couple more crash bugs.<br> · Reduced the number of windows that would pop up when pausing/resynching the server failed.<br> · tuschar2.rmt and tusitem2.rmt are now completely refreshed when editing/creating custom NPCs/Items. (thx Rhodan)<br> · Fixed a crash bug in the template editor ( thx Lestat )<br> · Changed the way that the client gets launched from the Launcher tab. NT users will no longer need to close that annoying DOS window to get HoG to function again.<br> · When editing items and NPCs, the Description field will automatically get changed when the name field changes.<br> · various other cosmetic fixes.<br> <br> <b>Changes in version 0.8e ( 27-29 October 1999 )</b><br> · Fixed a crash bug when loading custom items. Previously, if two overrides of the same NPC/Item existed in the *2.scp file, HoG would crash when reading the second one. (thx Arthur Pendragon)<br> · Changed the file load progress windows to be not topmost windows.<br> · Templates can now be edited/created from the Item Generator tab. (thx ROK)<br> · Fixed a bug where spawn points weren't cleared from memory before doing a script reload.<br> · Fixed a crash bug that would occur under some circumstances when attempting to edit items (thx Fiz).<br> · Fixed a memory leak bug involved with DUPEITEM handling.<br> · Fixed the bug where custom items and NPCs weren't being read unless the .rmt files were deleted (thx Rhodan)<br> <br> <b>Changes in version 0.8d ( 25 October 1999 )</b><br> · Custom templates should now be recognized in the item generator. (thx ROK)<br> · The remote console should automatically re-connect on a file save if the connection was lost due to timeout.<br> · Items with a MORE or MORE2 value should retain these settings when edited.<br> · All .rmt files will now get deleted when you click the "Reload Scripts" button. (thx Rhodan)<br> · Re-enabled the template editor (AGAIN).<br> · The NPC Spawn Color is now correctly loaded at startup.<br> · An hourglass should appear now when saving script changes.<br> <br> <b>Changes in version 0.8c ( 13 October 1999 )</b><br> · Changed the Page button to use the correct syntax.<br> · Finally added support for the ITEMNEWBIE tag in the char scripts.<br> · NPC Editor will now auto-fill the HP, Mana, and Stamina fields when STR, INT and DEX change. (thx for the idea Wysteron)<br> · The System Information section on the settings tab should now display more realistic values.<br> <br> <b>Changes in version 0.8b ( mid September 1999 )</b><br> · Spawn Marker colors are now configurable.<br> · More resource consumption fixes.<br> · Finally updated the Server Config tool with the new INI tags and removed those that were obsolete.<br> · Expanded some of the error messages in an attempt to make them more helpful.<br> · Fixed a crash bug when loading spawnpoints.<br> <br> <b>Changes in version 0.8a ( early September 1999 )</b><br> · Minor bug fixes.<br> · Enabled the Template Editor.<br> <br> <b>Changes in version 0.8 ( August 1999 )</b><br> · Attempts to retrieve the TUS port through hogsvr will now return the default port value.<br> · Changed the remote console functions to be compatible with version .44c of TUS. Remote console will not work on older versions of TUS due to this change.<br> · Fixed the spawn initializer to allow a minimum time of 0. (thx Ashen)<br> · Added an Coloured Ore table editor.<br> · Added a Def Editor.<br> · Added a Template Editor. (disabled until 0.8a)<br> · Fixed a memory leak in the Item Generator. (thx SA)<br> <br> <b>Changes in version 0.7f (07/23/1999 - 07/27/1999)</b><br> · Fixed a bug in the NPC editor so that certain items (bracketed) could be deleted from the NPC's loot. (thx Xavior)<br> · Changed the clock button to use "/xclock" (thx Atreides)<br> · Changed the split button to use "/xsplit" (thx Atreides)<br> · Changed the save button to use "/save 1"<br> · Changed the Remote Console and World Map windows so that they can be hidden by clicking the 'X'. (thx Klamath)<br> · Changed the "Close GW HoG" button to read "Close TUS HoG". (thx Kain)<br> · Added a message window when the tuschar.scp and tusitem.scp files couldn't be opened.<br> <br> <b>Changes in version 0.7e (07/07/1999)</b><br> · Added support for the following INI tags: MAINLOGSERVER, MURDERMINCOUNT, MURDERDECAYTIME, and REGISTERSERVER.<br> · Weights of custom items are now saved correctly (i.e. WEIGHT=2 instead of WEIGHT=2.0). (thx Fiz).<br> <br> <b>Changes in version 0.7d (07/01/1999 - 07/03/1999)</b><br> · Added some additional messages to the remote console in an attempt to track down the problem where the remote console wasn't working for some people.<br> · Added support for the MAGICUNLOCKDOOR tag in server config (introduced in .41p of tussvr).<br> · Changed the way files are sent through hogsvr for compatibility with the linux version.<br> · Fixed another crash bug in the static release.<br> · Now checking for a '\' character at the end of the save path before looking for spawn points.<br> · Linux version of hogsvr now available.<br> <br> <b>Changes in version 0.7c (06/30/1999)</b><br> · Made the stat gain rate editor save as [ADVANCE] instead of [STAT 1] (thx Menace).<br> · Changed the socket calls to avoid crashes when linked with the static libraries.<br> · Fixed the encryption for the character '0' in the client launcher. (thx Cephelo).<br> <br> <b>Changes in version 0.7b (06/29/1999)</b><br> · OK really...I've fixed the problem with the "Save failed" messages.<br> · Added support for the NTSERVICE and POLLSERVERS tags in the Server Config window.<br> · Fixed the problem that resulted in "Unable to open unnamed file" messages while saving the server config.<br> <br> <b>Changes in version 0.7a (06/27/1999)</b><br> · Fixed the remote console window to actually disconnect when you hit the disconnect button.<br> · Fixed the map editor so that it will outline the rect while drawing...you need the Draw Rectangles box checked to do it. (thx DarinV31)<br> · Re-merged the code for region triggers which somehow did not get merged. (thx DarinV31)<br> <br> <b>Changes in version 0.7 (06/14/1999 - 06/25/1999)</b><br> · Changed the spawn lists so that the descriptions are shown rather than ID. If no description tag, ID is still shown.<br> · Added a new tab containing buttons for the new editors.<br> · Added a Name group editor.<br> · Added a Skill Table editor.<br> · Added a QuickSet section to the Item Tweak and Player Tweak tabs.<br> · Added a Notoriety Title table editor.<br> · Added a Stat Gain Rate editor.<br> · Added a button for the Xrestock command for restocking a single vendor.<br> · Added remove and freeze buttons on the spawn generator tab.<br> · Resized large windows so they could be displayed in 800x600 resolution.<br> · Added a spell table editor.<br> · Added some logic to cut down on the traffic that hogsvr should see. HoG should now check to see if it needs to download a file before doing so.<br> · Put in more messages to let the user know what HoG is doing during lengthy processes.<br> · Added a Word of Power editor.<br> · Added a remote console window that can be reached from the Misc tab.<br> · Fixed a bug in the NPC editor that caused the ICON tag to be saved incorrectly.<br> <br> <b>Changes in version 0.6f (06/17/1999 - 06/18/1999)</b><br> · Another fix for server config. Now MONSTERFIGHT and LOG are saved with a value of 0 if not checked (thx Alorian).<br> · Decreased the buffer size on send/recv to/from hogsvr in an attempt to fix the timeout issues (really caused by lost data).<br> · Allowed hogsvr to use a configurable port rather than a hardcoded port. If the HoG client leaves the port field blank, a default is used.<br> · Put the boxes for the MANA values in the right order on the NPC Editor (thx DarinV31).<br> · Items on NPCs will now be written last to modified NPCs (thx DarinV31).<br> · Fixed another bug relating to the NPC editor where the COLOR value wasn't getting carried through all the way to the editor.<br> · Saving remote scripts should now attempt to pause the server before save and resume afterwards.<br> <br> C<b>hanges in version 0.6e (06/16/1999)</b><br> · Fixed the server configuration tool so that it saves VERBOSE and IPSNIFF tags, and added support for NEWSPEECH (thx Colon Blow).<br> · Added support for the REAGENTLOSSFAIL tag in the server configuration tool (supported by TUSSVR 0.41f).<br> <br> <b>Changes in version 0.6d (06/15/1999)</b><br> · Fixed the bug where the wrestling skill wasn't being saved for custom NPCs (thx DarinV31).<br> · Fixed a design flaw where not all sounds for creatures were being displayed in the NPC editor (thx DarinV31).<br> · Colors for items in loot should now be saved. At least, they are for me. (thx DarinV31).<br> · Added support for the new ALLSHOW and SCRIPT commands (v0.41e of TUS)<br> · Added support for region triggers in the map editor.<br> · Fixed a bug in the graymap editor where the window was getting re-centered when it shouldn't have been.<br> <br> <b>Changes in version 0.6c (06/12/1999 - 06/13/1999)</b><br> · Fixed a few crash bugs that would arise under certain conditons while editing NPCs.<br> · Fixed a problem where derived NPC IDs were winding up in the CreatureBase box on the NPC Editor (thx Shai'tan).<br> · Fixed another problem with the CreatureBase box on the NPC Editor where Spawn Groups were showing up.<br> · Fixed a problem with the item generator tab where some values were being read incorrectly due to spaces at the end.<br> · Fixed another "unhandled file" message...this time when saving NPCs. (thx again Melen)<br> · Added support for the HIREDAYWAGE for NPCs.<br> · Added support for the known spells for NPCs.<br> · Fixed a bug where items weren't really getting deleted from the loot/vend items, etc on custom NPCs. (thx DarinV31)<br> · Fixed the def lookup functions to recognize Hex values (thx Satans Angel).<br> · Fixed loot items so that the colors, etc. get saved (thx DarinV31).<br> <br> <b>Changes in version 0.6b (06/11/1999)</b><br> · Fixed a bug in server config tool where HEARALL was being saved as SECURE. Duh!<br> · Fixed a bug in the General Tab where Bank was being interpreted as Debug (thx Martin).<br> · Allowed for negative values in the Z-Level field for use with the tile command (thx Danath).<br> · Allowed for sockets to time out during connections to hogsvr (rather than simply hang). (thx Melen, Danath, Skull).<br> · Added a <none> in the spell list for the item editor...because not all magic items cast spells.<br> · Added support for the new INI tags in the server config tool (FLIPDROPPEDOBJECTS, STATCAP, and STATAVG).<br> · Allowed entry of decimal values to be entered in the weight field of the item editor.<br> · Added buttons for the new PRIVSHOW and BARK commands to the Misc tab.<br> · Added support for the SCPFILE3 and SCPFILE4 tags in the server config tool.<br> · More bug fixes associated with the NPC editor.<br> <br> <b>Changes in version 0.6a (06/10/1999)</b><br> · Fixed some bugs where remote scripts weren't being written in all cases (thx Snowman, Fiz).<br> · Fixed a bug on item editor where the magical attribute was being set as 40 instead of 20.<br> · Fixed some potential crash bugs when reloading scripts (thx Colon Blow).<br> · Fixed bugs in saving remote items and NPCs (thx Melen).<br> · Fixed a bug in the server configuration tool where some boolean settings weren't saved correctly (thx Fiz).<br> · Changed the default first custom item number from 4600 to 6000.<br> · Changed the default first custom NPC number from 1200 to 4000.<br> · Custom NPCs with IDs > 4000 should now show up. (thx Fiz) -- not actually fixed until 0.6b -- sorry<br> <br> <b>Changes in version 0.6 (06/08/1999 - 06/09/1999)</b><br> · Added Spawn Group Editor<br> · Numerous bug fixes related to the interface with hogsvr.exe<br> · Bug fix with the GOTO command in the spawn list. No code behind it previously.<br> · Put in a server version supported in the about box.<br> <br> <b>Changes in version 0.5c (06/07/1999)</b><br> · Allowed for spawn groups to use HoG tags (thx Allmight).<br> · More cosmetic cleanup.<br> <br> <b>Changes in version 0.5b (06/04/1999 - 06/05/1999)</b><br> · Added functionality to that darn Reload Scripts button...happy now Soreus & Garion?<br> · Fixed a couple of bugs with the NPC and Item editors.<br> <br> <b>Changes in version 0.5a (06/03/1999)</b><br> · Bumped up the delay time in spawn messages from 500 ms to 700 ms.<br> · Fixed a bug where DEFS in the ID tag of NPCs were not being read correctly.<br> · Changed the PlayerTweak tab to reflect the new Privilege levels. (thx Garion)<br> · Fixed a bug with the travel tab where map regions were being read incorrectly.<br> <br> <b>Changes in version 0.5 (05/28/1999 - 06/02/1999)</b><br> · Turned on the NPC and Item Editor functions again<br> · Cleaned up alot of internal stuff<br> · Fixed the Send button on the travel tab to work the same way as the Go button (thx McGavin)<br> · Added a Go button to the spawn list window (thx for the idea McGavin)<br> · Fixed a bug where the item generator script didn't parse comments correctly<br> <br> <b>Changes in version 0.4d (05/21/1999)</b><br> · Selected items in all tree controls are now displayed in bold. Selected items in list controls are set to hot items, meaning they'll have a different color. (thx Garion)<br> · Added an edit button to the Client Launcher tab. Also made minor tweaks to the Client Launcher.<br> · Allowed re-centering of the Map Editor map by double-clicking a location in the WorldMap.<br> <br> <b>Changes in version 0.4c (05/19/1999)</b><br> · Resource consumption issue in map editor should be fixed<br> · SNOWCHANCE changed to COLDCHANCE (thx Garion)<br> · new areas and rooms get created immediately after the selected sibling. If no sibling is chosen, the item is placed at the end of the list. (thx Garion? Allmight?)<br> · selected regions in the map editor are displayed in bold. This is so that when the tree control loses focus you still know which region you are working with. (thx Garion)<br> · Changed default to only allow a single instance of HoG to run. There is an option on the settings tab that will allow for multiple instances of the application to run if desired. (thx Garion)<br> · Areas and Rooms added to the travel tab under 'Map Regions'<br> <br> <b>Changes in version 0.4b (05/17/1999)</b><br> · Fixed bugs in the code for creating new rooms in the map editor (thx Allmight)<br> · Fixed bug in the client launcher in the case of the pathname containing spaces (thx Allmight)<br> · Fixed bug in the map editor where some of the area/room settings weren't getting saved (thx Allmight)<br> <br> <b>Developer Release (05/15/1999) (version 0.4a)</b><br> · All IGT functionality is in.<br> · Added ability to save custom locations<br> · Graphical map in the zoom map was added.<br> · Spawn points displayed in zoom map (if selected).<br> · World map display available for quick re-centering of the zoom map<br> · Map editor added<br> · Added ability to set skills/stats from Flags and Brains<br> · Added Set home and Set Homedist to Spawn Generator<br> · Added ability to use the /static command from Item Generator<br> · Added nudgeup and nudgedown to the item generator<br> · Added ability to scale pictures of tall items<br> · Added item type selection to Item Tweak<br> · Added ability to set item name from Item Tweak<br> · Added nudgeup/nudgedown to Item Tweak<br> · Added Music and Sound Effects to the Misc page<br> · Added Broadcast command to the Misc page<br> · Added WinHelp for the application<br> · Added a Server Configuration Window<br> <br> <b>Fixes from prior alpha versions (Menasoft internal testing)</b><br> · Made Item Generator recognize defs in the ID tag when displaying custom items (thx Soreus)<br> · Fixed encryption algorithm used when saving account passwords on launcher (thx Garion)<br> </body> </html> Index: Drewsky.dsp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Drewsky.dsp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** Drewsky.dsp 29 May 2002 16:44:34 -0000 1.26 --- Drewsky.dsp 1 Jun 2002 02:55:48 -0000 1.27 *************** *** 9,18 **** !MESSAGE use the Export Makefile command and run !MESSAGE ! !MESSAGE NMAKE /f "Drewsky.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE ! !MESSAGE NMAKE /f "Drewsky.mak" CFG="drewsky - Win32 Future Debug" !MESSAGE !MESSAGE Possible choices for configuration are: --- 9,18 ---- !MESSAGE use the Export Makefile command and run !MESSAGE ! !MESSAGE NMAKE /f "drewsky.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE ! !MESSAGE NMAKE /f "drewsky.mak" CFG="drewsky - Win32 Future Debug" !MESSAGE !MESSAGE Possible choices for configuration are: *************** *** 976,980 **** # Begin Source File ! SOURCE=.\axis.txt # End Source File # Begin Source File --- 976,980 ---- # Begin Source File ! SOURCE=.\axis.html # End Source File # Begin Source File *************** *** 997,1003 **** # End Target # End Project ! # Section drewsky : {2AC21540-4C63-4663-BF24-D1DBD9205223} ! # 2:21:DefaultSinkHeaderFile:uomap.h ! # 2:16:DefaultSinkClass:CUOMap # End Section # Section drewsky : {0904F7B3-2339-44C9-857C-6EB6CFEFA3B6} --- 997,1004 ---- # End Target # End Project ! # Section drewsky : {EF8782A5-4E77-4990-A8C7-0E28C52E90CF} ! # 2:5:Class:CUOArt ! # 2:10:HeaderFile:uoart.h ! # 2:8:ImplFile:uoart.cpp # End Section # Section drewsky : {0904F7B3-2339-44C9-857C-6EB6CFEFA3B6} *************** *** 1005,1016 **** # 2:16:DefaultSinkClass:CUOArt # End Section # Section drewsky : {2B360722-F116-4004-A71A-5E14B4C4873E} # 2:5:Class:CUOMap # 2:10:HeaderFile:uomap.h # 2:8:ImplFile:uomap.cpp - # End Section - # Section drewsky : {EF8782A5-4E77-4990-A8C7-0E28C52E90CF} - # 2:5:Class:CUOArt - # 2:10:HeaderFile:uoart.h - # 2:8:ImplFile:uoart.cpp # End Section --- 1006,1016 ---- # 2:16:DefaultSinkClass:CUOArt # End Section + # Section drewsky : {2AC21540-4C63-4663-BF24-D1DBD9205223} + # 2:21:DefaultSinkHeaderFile:uomap.h + # 2:16:DefaultSinkClass:CUOMap + # End Section # Section drewsky : {2B360722-F116-4004-A71A-5E14B4C4873E} # 2:5:Class:CUOMap # 2:10:HeaderFile:uomap.h # 2:8:ImplFile:uomap.cpp # End Section Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -r1.46 -r1.47 *** drewsky.rc 31 May 2002 04:24:26 -0000 1.46 --- drewsky.rc 1 Jun 2002 02:55:48 -0000 1.47 *************** *** 2362,2367 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,1,18 ! PRODUCTVERSION 0,13,1,18 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 2362,2367 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,2,0 ! PRODUCTVERSION 0,13,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 2381,2385 **** VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 1, 18\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" --- 2381,2385 ---- VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 2, 0\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" *************** *** 2388,2392 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 1, 18\0" VALUE "SpecialBuild", "\0" END --- 2388,2392 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 2, 0\0" VALUE "SpecialBuild", "\0" END Index: install.bat =================================================================== RCS file: /cvsroot/sphere-axis/Axis/install.bat,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** install.bat 29 May 2002 16:44:34 -0000 1.2 --- install.bat 1 Jun 2002 02:55:48 -0000 1.3 *************** *** 8,12 **** md install copy %1\axis.exe install\ ! copy axis.txt install\ copy hlp\axis.hlp install\ copy hlp\axis.cnt install\ --- 8,12 ---- md install copy %1\axis.exe install\ ! copy axis.html install\ copy hlp\axis.hlp install\ copy hlp\axis.cnt install\ *************** *** 18,20 **** copy LICENSE install\ copy rooftiles.cfg install\ ! copy roofing.txt install\ \ No newline at end of file --- 18,20 ---- copy LICENSE install\ copy rooftiles.cfg install\ ! copy roofing.txt install\ --- Axis.txt DELETED --- |
From: Philip E. <pes...@us...> - 2002-05-31 04:24:29
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv29627 Modified Files: drewsky.rc Log Message: UOMap controls were screwed up in the worldmap dialog and in the map script editor. Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -r1.45 -r1.46 *** drewsky.rc 31 May 2002 01:21:09 -0000 1.45 --- drewsky.rc 31 May 2002 04:24:26 -0000 1.46 *************** *** 1,4 **** //Microsoft Developer Studio generated resource script. ! // Last compiled 5/30/2002 at 19:16:13 #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // #include "resource.h" *************** *** 1098,1104 **** CONTROL "",IDC_MAPDISPLAY,"{2AC21540-4C63-4663-BF24-D1DBD9205223}", WS_TABSTOP,204,58,276,252 ! ICON IDI_ZOOMOUT,IDC_ZOOMOUT,207,42,12,11,SS_NOTIFY | SS_REALSIZEIMAGE ! ICON IDI_ZOOMIN,IDC_ZOOMIN,224,42,12,11,SS_NOTIFY | SS_REALSIZEIMAGE END --- 1098,1104 ---- CONTROL "",IDC_MAPDISPLAY,"{2AC21540-4C63-4663-BF24-D1DBD9205223}", WS_TABSTOP,204,58,276,252 ! ICON IDI_ZOOMOUT,IDC_ZOOMOUT,207,42,20,20,SS_NOTIFY | SS_REALSIZEIMAGE ! ICON IDI_ZOOMIN,IDC_ZOOMIN,224,42,20,20,SS_NOTIFY | SS_REALSIZEIMAGE END *************** *** 3007,3013 **** IDD_WORLDMAP DLGINIT BEGIN ! IDC_WORLDMAP, 0x376, 27, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x27b0, 0x0000, 0x1a90, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0xf808, "\377" 0 END --- 3007,3013 ---- IDD_WORLDMAP DLGINIT BEGIN ! IDC_WORLDMAP, 0x376, 29, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x27b0, 0x0000, 0x1a90, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0xfc08, 0x00ff, "\000" 0 END *************** *** 3039,3045 **** IDD_EDITGRAYMAP_DLG DLGINIT BEGIN ! IDC_MAPDISPLAY, 0x376, 27, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x2aca, 0x0000, 0x2a60, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0x0008, "\000" 0 END --- 3039,3045 ---- IDD_EDITGRAYMAP_DLG DLGINIT BEGIN ! IDC_MAPDISPLAY, 0x376, 29, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x2aca, 0x0000, 0x2a60, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0x0008, 0x0000, "\000" 0 END |
From: Philip E. <pes...@us...> - 2002-05-31 04:23:52
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv29489 Modified Files: ColorSelectionDlg.cpp Log Message: color index in the combo box was off by 1. Index: ColorSelectionDlg.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/ColorSelectionDlg.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** ColorSelectionDlg.cpp 29 May 2002 19:14:58 -0000 1.11 --- ColorSelectionDlg.cpp 31 May 2002 04:23:46 -0000 1.12 *************** *** 475,479 **** { int iIndex = m_ccbHues.AddString(csHueName); ! m_ccbHues.SetItemData(iIndex, (i * 8) + j); } } --- 475,479 ---- { int iIndex = m_ccbHues.AddString(csHueName); ! m_ccbHues.SetItemData(iIndex, (i * 8) + j + 1); } } |
From: Philip E. <pes...@us...> - 2002-05-31 01:21:19
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv28487 Modified Files: drewsky.rc Log Message: New build Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -r1.44 -r1.45 *** drewsky.rc 31 May 2002 01:15:51 -0000 1.44 --- drewsky.rc 31 May 2002 01:21:09 -0000 1.45 *************** *** 1,4 **** //Microsoft Developer Studio generated resource script. ! // Last compiled 5/29/2002 at 23:59:30 #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // Last compiled 5/30/2002 at 19:16:13 #include "resource.h" *************** *** 2362,2367 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,1,17 ! PRODUCTVERSION 0,13,1,17 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 2362,2367 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,1,18 ! PRODUCTVERSION 0,13,1,18 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 2381,2385 **** VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 1, 17\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" --- 2381,2385 ---- VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 1, 18\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" *************** *** 2388,2392 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 1, 17\0" VALUE "SpecialBuild", "\0" END --- 2388,2392 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 1, 18\0" VALUE "SpecialBuild", "\0" END |
From: Philip E. <pes...@us...> - 2002-05-31 01:15:59
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv26947 Modified Files: drewsky.rc Log Message: New build Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -r1.43 -r1.44 *** drewsky.rc 30 May 2002 03:44:04 -0000 1.43 --- drewsky.rc 31 May 2002 01:15:51 -0000 1.44 *************** *** 1,4 **** //Microsoft Developer Studio generated resource script. ! // Last compiled 5/29/2002 at 21:36:32 #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // Last compiled 5/29/2002 at 23:59:30 #include "resource.h" *************** *** 198,206 **** CONTROL "",IDC_TRAVELMAP,"{2AC21540-4C63-4663-BF24-D1DBD9205223}", WS_TABSTOP,349,2,126,110 ! ICON IDI_ZOOMOUT,IDC_ZOOMOUT,477,18,13,13,SS_NOTIFY | SS_CENTERIMAGE | SS_REALSIZEIMAGE ! ICON IDI_ZOOMIN,IDC_ZOOMIN,477,2,13,13,SS_NOTIFY | SS_CENTERIMAGE | SS_REALSIZEIMAGE ! ICON IDI_WORLD,IDC_WORLDMAP,477,34,15,15,SS_NOTIFY | SS_CENTERIMAGE | SS_REALSIZEIMAGE END --- 198,206 ---- CONTROL "",IDC_TRAVELMAP,"{2AC21540-4C63-4663-BF24-D1DBD9205223}", WS_TABSTOP,349,2,126,110 ! ICON IDI_ZOOMOUT,IDC_ZOOMOUT,477,18,20,20,SS_NOTIFY | SS_CENTERIMAGE | SS_REALSIZEIMAGE ! ICON IDI_ZOOMIN,IDC_ZOOMIN,477,2,20,20,SS_NOTIFY | SS_CENTERIMAGE | SS_REALSIZEIMAGE ! ICON IDI_WORLD,IDC_WORLDMAP,477,34,20,20,SS_NOTIFY | SS_CENTERIMAGE | SS_REALSIZEIMAGE END *************** *** 1781,1785 **** STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Color Selection" ! FONT 8, "MS Sans Serif" BEGIN DEFPUSHBUTTON "OK",IDOK,421,7,50,14 --- 1781,1785 ---- STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Color Selection" ! FONT 8, "MS Sans Serif", 0, 0, 0x1 BEGIN DEFPUSHBUTTON "OK",IDOK,421,7,50,14 *************** *** 2362,2367 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,1,16 ! PRODUCTVERSION 0,13,1,16 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 2362,2367 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,1,17 ! PRODUCTVERSION 0,13,1,17 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 2381,2385 **** VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 1, 16\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" --- 2381,2385 ---- VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 1, 17\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" *************** *** 2388,2392 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 1, 16\0" VALUE "SpecialBuild", "\0" END --- 2388,2392 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 1, 17\0" VALUE "SpecialBuild", "\0" END *************** *** 2988,2994 **** IDD_STATICTOOL DLGINIT BEGIN ! IDC_STATIC_MAP2, 0x376, 27, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x1864, 0x0000, 0x13a3, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0xff08, "\377" IDC_STATIC_PREVIEW, 0x376, 28, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x1653, 0x0000, 0x13a3, 0x0000, 0x0000, --- 2988,2994 ---- IDD_STATICTOOL DLGINIT BEGIN ! IDC_STATIC_MAP2, 0x376, 29, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x1864, 0x0000, 0x13a3, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0x0008, 0x0000, "\000" IDC_STATIC_PREVIEW, 0x376, 28, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x1653, 0x0000, 0x13a3, 0x0000, 0x0000, *************** *** 2999,3005 **** IDD_TRAVEL_TAB DLGINIT BEGIN ! IDC_TRAVELMAP, 0x376, 27, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x1389, 0x0000, 0x1280, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0x0008, "\000" 0 END --- 2999,3005 ---- IDD_TRAVEL_TAB DLGINIT BEGIN ! IDC_TRAVELMAP, 0x376, 29, 0 0x0000, 0x0000, 0x0000, 0x0001, 0x1389, 0x0000, 0x1280, 0x0000, 0x0000, ! 0x0000, 0x0001, 0x000c, 0x0008, 0x0000, "\000" 0 END |
From: Philip E. <pes...@us...> - 2002-05-30 18:13:13
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv5945 Modified Files: Axis.txt CScriptObjects.cpp Log Message: Fixed a crash bug when uploading scripts in the GUI script editor. Index: Axis.txt =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Axis.txt,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** Axis.txt 29 May 2002 19:14:58 -0000 1.32 --- Axis.txt 30 May 2002 18:13:08 -0000 1.33 *************** *** 25,28 **** --- 25,29 ---- ============================================================================= Changes in version 0.13.2 (in development) + · Fixed a crash bug when uploading scripts in the GUI script editor. · Added a combo box containing internal hue names to the Color Selection dialog. Also, these internal names can be exported as DEFS. Index: CScriptObjects.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/CScriptObjects.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** CScriptObjects.cpp 20 May 2002 19:14:42 -0000 1.18 --- CScriptObjects.cpp 30 May 2002 18:13:08 -0000 1.19 *************** *** 2466,2470 **** e->Delete(); } ! m_pDlg->SetPos(csfInput.GetLength()); csfInput.Close(); DestroyProgressDialog(); --- 2466,2471 ---- e->Delete(); } ! if ( m_pDlg ) ! m_pDlg->SetPos(csfInput.GetLength()); csfInput.Close(); DestroyProgressDialog(); |
From: Philip E. <pes...@us...> - 2002-05-30 05:49:14
|
Update of /cvsroot/sphere-axis/UOMap In directory usw-pr-cvs1:/tmp/cvs-serv3501 Modified Files: UOMap.rc UOMapCtl.cpp Log Message: New build with fix for windowless activation. Index: UOMap.rc =================================================================== RCS file: /cvsroot/sphere-axis/UOMap/UOMap.rc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** UOMap.rc 29 May 2002 03:59:31 -0000 1.8 --- UOMap.rc 30 May 2002 05:49:10 -0000 1.9 *************** *** 1,4 **** //Microsoft Developer Studio generated resource script. ! // Last compiled 5/28/2002 at 20:56:59 #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // Last compiled 5/29/2002 at 23:48:26 #include "resource.h" *************** *** 55,60 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,0,4 ! PRODUCTVERSION 1,2,0,4 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 55,60 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,0,5 ! PRODUCTVERSION 1,2,0,5 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 74,78 **** VALUE "CompanyName", "MCI WorldCom\0" VALUE "FileDescription", "UOMap ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 0, 4\0" VALUE "InternalName", "UOMap\0" VALUE "LegalCopyright", "Copyright (C) 2001\0" --- 74,78 ---- VALUE "CompanyName", "MCI WorldCom\0" VALUE "FileDescription", "UOMap ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 0, 5\0" VALUE "InternalName", "UOMap\0" VALUE "LegalCopyright", "Copyright (C) 2001\0" *************** *** 82,86 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOMap ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 0, 4\0" VALUE "SpecialBuild", "\0" END --- 82,86 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOMap ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 0, 5\0" VALUE "SpecialBuild", "\0" END Index: UOMapCtl.cpp =================================================================== RCS file: /cvsroot/sphere-axis/UOMap/UOMapCtl.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** UOMapCtl.cpp 28 May 2002 19:13:01 -0000 1.7 --- UOMapCtl.cpp 30 May 2002 05:49:10 -0000 1.8 *************** *** 1204,1208 **** // Convert from the control reference frame to map reference frame CRect rcMap; ! GetClientRect(&rcMap); int RectWidth = rcMap.Width() - rcMap.Width() % 8; int xc = m_xCenter / 8; --- 1204,1211 ---- // Convert from the control reference frame to map reference frame CRect rcMap; ! if ( m_hWnd != NULL ) ! GetClientRect(&rcMap); ! else ! rcMap = m_rcBounds; int RectWidth = rcMap.Width() - rcMap.Width() % 8; int xc = m_xCenter / 8; *************** *** 1237,1241 **** // Convert from the control reference frame to map reference frame CRect rcMap; ! GetClientRect(&rcMap); int RectHeight = rcMap.Height() - rcMap.Height() % 8; int yc = m_yCenter / 8; --- 1240,1247 ---- // Convert from the control reference frame to map reference frame CRect rcMap; ! if ( m_hWnd != NULL ) ! GetClientRect(&rcMap); ! else ! rcMap = m_rcBounds; int RectHeight = rcMap.Height() - rcMap.Height() % 8; int yc = m_yCenter / 8; *************** *** 1270,1273 **** --- 1276,1283 ---- // Convert from map reference frame to control reference frame CRect rcMap; + if ( m_hWnd != NULL ) + GetClientRect(&rcMap); + else + rcMap = m_rcBounds; GetClientRect(&rcMap); int RectWidth = rcMap.Width() - rcMap.Width() % 8; *************** *** 1301,1304 **** --- 1311,1318 ---- // Convert from map reference frame to control reference frame CRect rcMap; + if ( m_hWnd != NULL ) + GetClientRect(&rcMap); + else + rcMap = m_rcBounds; GetClientRect(&rcMap); int RectHeight = rcMap.Height() - rcMap.Height() % 8; |
From: Philip E. <pes...@us...> - 2002-05-30 03:44:13
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv6064 Modified Files: drewsky.rc uoart.cpp uoart.h Log Message: New build Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -r1.42 -r1.43 *** drewsky.rc 29 May 2002 19:14:59 -0000 1.42 --- drewsky.rc 30 May 2002 03:44:04 -0000 1.43 *************** *** 1,4 **** //Microsoft Developer Studio generated resource script. ! // #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // Last compiled 5/29/2002 at 21:36:32 #include "resource.h" *************** *** 2362,2367 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,1,15 ! PRODUCTVERSION 0,13,1,15 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 2362,2367 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 0,13,1,16 ! PRODUCTVERSION 0,13,1,16 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 2381,2385 **** VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 1, 15\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" --- 2381,2385 ---- VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "0, 13, 1, 16\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" *************** *** 2388,2392 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 1, 15\0" VALUE "SpecialBuild", "\0" END --- 2388,2392 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "0, 13, 1, 16\0" VALUE "SpecialBuild", "\0" END Index: uoart.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/uoart.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** uoart.cpp 14 May 2002 20:03:35 -0000 1.6 --- uoart.cpp 30 May 2002 03:44:04 -0000 1.7 *************** *** 266,267 **** --- 266,285 ---- return result; } + + long CUOArt::GetBkColor(long color) + { + long result; + static BYTE parms[] = + VTS_I4; + InvokeHelper(0x19, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, parms, + color); + return result; + } + + void CUOArt::SetBkColor(long color, long nNewValue) + { + static BYTE parms[] = + VTS_I4 VTS_I4; + InvokeHelper(0x19, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, + color, nNewValue); + } Index: uoart.h =================================================================== RCS file: /cvsroot/sphere-axis/Axis/uoart.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** uoart.h 14 May 2002 20:03:35 -0000 1.7 --- uoart.h 30 May 2002 03:44:04 -0000 1.8 *************** *** 22,25 **** --- 22,28 ---- */ + #ifndef __UOART_CTRL__ + #define __UOART_CTRL__ + // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++ *************** *** 30,36 **** // CUOArt wrapper class - #ifndef __UOART_CTRL__ - #define __UOART_CTRL__ - class CUOArt : public CWnd { --- 33,36 ---- *************** *** 94,97 **** --- 94,99 ---- BOOL SetCustomMulFile(short sFileIndex, LPCTSTR pszNewFilePath); CString GetCustomMulPath(short sFileIndex); + long GetBkColor(long color); + void SetBkColor(long color, long nNewValue); }; |
From: Philip E. <pes...@us...> - 2002-05-30 03:31:08
|
Update of /cvsroot/sphere-axis/UOArt In directory usw-pr-cvs1:/tmp/cvs-serv3293 Modified Files: UOArt.rc UOArt.opt Log Message: New build Index: UOArt.rc =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/UOArt.rc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** UOArt.rc 29 May 2002 03:59:17 -0000 1.9 --- UOArt.rc 30 May 2002 03:31:01 -0000 1.10 *************** *** 1,4 **** /* ! // Last compiled 5/28/2002 at 20:57:23 ********************************************************************** --- 1,4 ---- /* ! // Last compiled 5/29/2002 at 21:29:11 ********************************************************************** *************** *** 101,106 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,0,6 ! PRODUCTVERSION 1,2,0,6 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 101,106 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,2,0,7 ! PRODUCTVERSION 1,2,0,7 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 120,124 **** VALUE "CompanyName", "\0" VALUE "FileDescription", "UOArt ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 0, 6\0" VALUE "InternalName", "UOArt\0" VALUE "LegalCopyright", "Copyright (C) 2000, 2001\0" --- 120,124 ---- VALUE "CompanyName", "\0" VALUE "FileDescription", "UOArt ActiveX Control Module\0" ! VALUE "FileVersion", "1, 2, 0, 7\0" VALUE "InternalName", "UOArt\0" VALUE "LegalCopyright", "Copyright (C) 2000, 2001\0" *************** *** 128,132 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOArt ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 0, 6\0" VALUE "SpecialBuild", "\0" END --- 128,132 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "UOArt ActiveX Control Module\0" ! VALUE "ProductVersion", "1, 2, 0, 7\0" VALUE "SpecialBuild", "\0" END Index: UOArt.opt =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/UOArt.opt,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 Binary files /tmp/cvsy8azMk and /tmp/cvss561lx differ |
From: Philip E. <pes...@us...> - 2002-05-29 21:00:37
|
Update of /cvsroot/sphere-axis/UOArt In directory usw-pr-cvs1:/tmp/cvs-serv20756 Modified Files: UOArt.odl UOArtCtl.cpp UOArtCtl.h Log Message: Background color can now be specified. Index: UOArt.odl =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/UOArt.odl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** UOArt.odl 11 May 2002 05:47:58 -0000 1.4 --- UOArt.odl 29 May 2002 21:00:29 -0000 1.5 *************** *** 58,61 **** --- 58,63 ---- [id(23)] boolean SetCustomMulFile(short sFileIndex, BSTR pszNewFilePath); [id(24)] BSTR GetCustomMulPath(short sFileIndex); + [id(25), propget] long BkColor(long color); + [id(25), propput] void BkColor(long color, long nNewValue); //}}AFX_ODL_METHOD Index: UOArtCtl.cpp =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/UOArtCtl.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** UOArtCtl.cpp 28 May 2002 19:13:29 -0000 1.15 --- UOArtCtl.cpp 29 May 2002 21:00:29 -0000 1.16 *************** *** 151,154 **** --- 151,155 ---- DISP_FUNCTION(CUOArtCtrl, "SetCustomMulFile", SetCustomMulFile, VT_BOOL, VTS_I2 VTS_BSTR) DISP_FUNCTION(CUOArtCtrl, "GetCustomMulPath", GetCustomMulPath, VT_BSTR, VTS_I2) + DISP_PROPERTY_PARAM(CUOArtCtrl, "BkColor", GetBkColor, SetBkColor, VT_I4, VTS_I4) DISP_STOCKPROP_READYSTATE() //}}AFX_DISPATCH_MAP *************** *** 364,367 **** --- 365,369 ---- m_wDrawFlags = 0; + m_dwBkColor = 0xFFFFFFFF; ReadRegistry(); *************** *** 510,514 **** m_bPixels.RemoveAll(); m_bPixels.SetSize(RectWidth * RectHeight * 3); ! DWORD backColor = GetSysColor(COLOR_3DFACE); BYTE r, g, b; b = (BYTE) ((backColor >> 16) & 0xFF); --- 512,521 ---- m_bPixels.RemoveAll(); m_bPixels.SetSize(RectWidth * RectHeight * 3); ! DWORD backColor; ! if ( m_dwBkColor != 0xFFFFFFFF) ! backColor = m_dwBkColor; ! else ! backColor = GetSysColor(COLOR_3DFACE); ! BYTE r, g, b; b = (BYTE) ((backColor >> 16) & 0xFF); *************** *** 2307,2309 **** --- 2314,2327 ---- strResult = m_saMulPaths.GetAt(sFileIndex); return strResult.AllocSysString(); + } + + long CUOArtCtrl::GetBkColor() + { + return (long) m_dwBkColor; + } + + void CUOArtCtrl::SetBkColor(long nNewValue) + { + m_dwBkColor = (DWORD) nNewValue; + SetModifiedFlag(); } Index: UOArtCtl.h =================================================================== RCS file: /cvsroot/sphere-axis/UOArt/UOArtCtl.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** UOArtCtl.h 28 May 2002 19:13:29 -0000 1.11 --- UOArtCtl.h 29 May 2002 21:00:32 -0000 1.12 *************** *** 250,253 **** --- 250,254 ---- ~CUOArtCtrl(); CVerdataIdx * m_pVerdataIdx; + DWORD m_dwBkColor; DECLARE_OLECREATE_EX(CUOArtCtrl) // Class factory and guid *************** *** 295,298 **** --- 296,301 ---- afx_msg BOOL SetCustomMulFile(short sFileIndex, LPCTSTR pszNewFilePath); afx_msg BSTR GetCustomMulPath(short sFileIndex); + afx_msg long GetBkColor(); + afx_msg void SetBkColor(long nNewValue); //}}AFX_DISPATCH DECLARE_DISPATCH_MAP() *************** *** 331,334 **** --- 334,338 ---- dispidSetCustomMulFile = 23L, dispidGetCustomMulPath = 24L, + dispidBkColor = 25L, //}}AFX_DISP_ID }; |