dxx-rebirth/similar/editor/medsel.cpp
Kp fa8dcc9113 Explicitly delete basic_ptridx(pointer_type); require array
Require the array argument for basic_ptridx, which is supplied
automatically when the factory is used.
2015-07-13 01:09:37 +00:00

115 lines
3 KiB
C++

/*
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
*
* Routines stripped from med.c for segment selection
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include "gr.h"
#include "ui.h"
#include "key.h"
#include "dxxerror.h"
#include "u_mem.h"
#include "inferno.h"
#include "gameseg.h"
#include "editor.h"
#include "editor/esegment.h"
#include "editor/medmisc.h"
#include "segment.h"
#include "object.h"
#include "medsel.h"
#include "kdefs.h"
#include "dxxsconf.h"
#include "compiler-range_for.h"
//find the distance between a segment and a point
static fix compute_dist(const vcsegptr_t seg,const vms_vector &pos)
{
auto delta = compute_segment_center(seg);
vm_vec_sub2(delta,pos);
return vm_vec_mag(delta);
}
void sort_seg_list(count_segment_array_t &segnumlist,const vms_vector &pos)
{
array<fix, MAX_SEGMENTS> dist;
range_for (const auto &ss, segnumlist)
dist[ss] = compute_dist(&Segments[ss],pos);
auto predicate = [&dist](count_segment_array_t::const_reference a, count_segment_array_t::const_reference b) {
return dist[a] < dist[b];
};
std::sort(segnumlist.begin(), segnumlist.end(), predicate);
}
int SortSelectedList(void)
{
sort_seg_list(Selected_segs,ConsoleObject->pos);
editor_status_fmt("%i element selected list sorted.",Selected_segs.count());
return 1;
}
int SelectNextFoundSeg(void)
{
if (++Found_seg_index >= Found_segs.count())
Found_seg_index = 0;
Cursegp = segptridx(Found_segs[Found_seg_index]);
med_create_new_segment_from_cursegp();
Update_flags |= UF_WORLD_CHANGED;
if (Lock_view_to_cursegp)
set_view_target_from_segment(Cursegp);
editor_status("Curseg assigned to next found segment.");
return 1;
}
int SelectPreviousFoundSeg(void)
{
if (Found_seg_index > 0)
Found_seg_index--;
else
Found_seg_index = Found_segs.count()-1;
Cursegp = segptridx(Found_segs[Found_seg_index]);
med_create_new_segment_from_cursegp();
Update_flags |= UF_WORLD_CHANGED;
if (Lock_view_to_cursegp)
set_view_target_from_segment(Cursegp);
editor_status("Curseg assigned to previous found segment.");
return 1;
}